mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-02-18 00:17:39 +01:00
The standalone pulse-host-agent was missing self-update functionality that existed in pulse-docker-agent and the unified pulse-agent. Changes: - Add agentupdate integration to pulse-host-agent - Add --no-auto-update flag and PULSE_NO_AUTO_UPDATE env var - Update Windows service to use errgroup pattern with auto-updater - Move version from internal/hostagent to main package for ldflags Related to #737
13 lines
206 B
Go
13 lines
206 B
Go
//go:build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/rs/zerolog"
|
|
)
|
|
|
|
// runAsWindowsService is a no-op on non-Windows platforms
|
|
func runAsWindowsService(_ Config, _ zerolog.Logger) error {
|
|
return nil
|
|
}
|