mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
* Adding a new synchronization mechanism between fleet-desktop app and Orbit service. Improved windows service teardown to ensure that fleet-desktop does not get force killed without getting signaled. Improved windows process enumeration to avoid unnecessary delays during windows service start and windows service teardown. Updating windows service to reflect service teardown extra time due to synchronization.
9 lines
266 B
Go
9 lines
266 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package osservice
|
|
|
|
// SetupServiceManagement is currently a placeholder for non-windows OSes
|
|
// system service configuration
|
|
func SetupServiceManagement(serviceName string, interruptCh chan struct{}, doneCh chan struct{}) {
|
|
}
|