mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
It has all sorts of benefits due to the service manager being aware of the starting/running/stopping state, see systemd.service(5) On top of that, start-up errors are reported using STATUS= key, so they will be easier to see in the 'systemctl status' output.
14 lines
189 B
Go
14 lines
189 B
Go
//+build !linux
|
|
|
|
package maddy
|
|
|
|
type SDStatus string
|
|
|
|
const (
|
|
SDReady = "READY=1"
|
|
SDStopping = "STOPPING=1"
|
|
)
|
|
|
|
func systemdStatus(SDStatus, string) {}
|
|
|
|
func systemdStatusErr(error) {}
|