feat(services): support service timers for which a running state means waiting

This commit is contained in:
Julien Dessaux 2024-08-28 00:16:25 +02:00
parent 14511b3201
commit 518cbed944
Signed by: adyxax
GPG key ID: F92E51B86E07177E

View file

@ -16,7 +16,8 @@ func isEnabled(name string) bool {
}
func isRunning(name string) bool {
return systemctlShow(name, "SubState") == "running"
value := systemctlShow(name, "SubState")
return value == "running" || value == "waiting"
}
func systemctl(name, operation string) (gonf.Status, error) {