rclone/vendor/github.com/okzk/sdnotify/util.go

22 lines
359 B
Go
Raw Normal View History

2017-11-20 06:03:27 +08:00
package sdnotify
import "errors"
var SdNotifyNoSocket = errors.New("No socket")
func SdNotifyReady() error {
return SdNotify("READY=1")
}
func SdNotifyStopping() error {
return SdNotify("STOPPING=1")
}
func SdNotifyReloading() error {
return SdNotify("RELOADING=1")
}
func SdNotifyStatus(status string) error {
return SdNotify("STATUS=" + status)
}