Move utility package 'systemd' to pkg/systemd

This commit is contained in:
Solomon Hykes 2013-12-23 23:07:01 +00:00
commit 6d59201bde

33
systemd/sd_notify.go Normal file
View file

@ -0,0 +1,33 @@
package systemd
import (
"errors"
"net"
"os"
)
var SdNotifyNoSocket = errors.New("No socket")
// Send a message to the init daemon. It is common to ignore the error.
func SdNotify(state string) error {
socketAddr := &net.UnixAddr{
Name: os.Getenv("NOTIFY_SOCKET"),
Net: "unixgram",
}
if socketAddr.Name == "" {
return SdNotifyNoSocket
}
conn, err := net.DialUnix(socketAddr.Net, nil, socketAddr)
if err != nil {
return err
}
_, err = conn.Write([]byte(state))
if err != nil {
return err
}
return nil
}