diff --git a/yunohost_service.py b/yunohost_service.py index 0989e458..f4e83a2b 100644 --- a/yunohost_service.py +++ b/yunohost_service.py @@ -127,7 +127,8 @@ def service_status(names=None): ret = subprocess.check_output(status.split(), stderr=subprocess.STDOUT) except subprocess.CalledProcessError as e: # TODO: log error - result[name]['status'] = _("inactive") + if 'usage:' not in e.output.lower(): + result[name]['status'] = _("inactive") else: result[name]['status'] = _("running")