4493b6f176
The ocid project was renamed to CRI-O, months ago, it is time that we moved all of the code to the new name. We want to elminate the name ocid from use. Move fully to crio. Also cric is being renamed to crioctl for the time being. Signed-off-by: Dan Walsh <dwalsh@redhat.com>
20 lines
443 B
Go
20 lines
443 B
Go
// +build linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/Sirupsen/logrus"
|
|
systemdDaemon "github.com/coreos/go-systemd/daemon"
|
|
)
|
|
|
|
func sdNotify() {
|
|
if _, err := systemdDaemon.SdNotify(true, "READY=1"); err != nil {
|
|
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()
|
|
}
|