diff --git a/system/service.py b/system/service.py index 227d34c1463..d08b6cd6746 100644 --- a/system/service.py +++ b/system/service.py @@ -403,7 +403,7 @@ class LinuxService(Service): self.svc_initscript = initscript def check_systemd(): - return os.path.exists("/run/systemd/system/") + return os.path.exists("/run/systemd/system/") or os.path.exists("/dev/.run/systemd/") or os.path.exists("/dev/.systemd/") # Locate a tool to enable/disable a service if location.get('systemctl',False) and check_systemd():