diff --git a/service_systemd_linux.go b/service_systemd_linux.go index e9fb4d6..6c21f29 100644 --- a/service_systemd_linux.go +++ b/service_systemd_linux.go @@ -20,6 +20,9 @@ import ( ) func isSystemd() bool { + if _, err := exec.LookPath("rpm-ostree"); err == nil { + return true + } if _, err := os.Stat("/run/systemd/system"); err == nil { return true }