835831a3d8
This is the basic code to add the Windows Service Manager hooks to Nomad. Includes vendoring golang.org/x/sys/windows/svc and added Docs: * guide for installing as a windows service. * configuration for logging to file from PR #6429
10 lines
231 B
Go
10 lines
231 B
Go
package winsvc
|
|
|
|
var chanGraceExit = make(chan int)
|
|
|
|
// ShutdownChannel returns a channel that sends a message that a shutdown
|
|
// signal has been received for the service.
|
|
func ShutdownChannel() <-chan int {
|
|
return chanGraceExit
|
|
}
|