2016-10-12 20:27:28 +00:00
|
|
|
// +build linux
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
|
|
systemdDaemon "github.com/coreos/go-systemd/daemon"
|
|
|
|
)
|
|
|
|
|
|
|
|
func sdNotify() {
|
2016-10-17 13:53:40 +00:00
|
|
|
if _, err := systemdDaemon.SdNotify(true, "READY=1"); err != nil {
|
2016-10-12 20:27:28 +00:00
|
|
|
logrus.Warnf("Failed to sd_notify systemd: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// notifySystem sends a message to the host when the server is ready to be used
|
|
|
|
func notifySystem() {
|
|
|
|
// Tell the init daemon we are accepting requests
|
|
|
|
go sdNotify()
|
|
|
|
}
|