2017-11-19 23:03:27 +01:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package sdnotify
|
|
|
|
|
2018-08-20 13:32:46 +02:00
|
|
|
// SdNotify sends a specified string to the systemd notification socket.
|
2017-11-19 23:03:27 +01:00
|
|
|
func SdNotify(state string) error {
|
|
|
|
// do nothing
|
|
|
|
return nil
|
|
|
|
}
|