diff --git a/src/yunohost/service.py b/src/yunohost/service.py index 95874f99a..55047bd4d 100644 --- a/src/yunohost/service.py +++ b/src/yunohost/service.py @@ -604,7 +604,7 @@ def _get_pending_conf(services=[]): if not os.path.isdir(pending_conf_dir): return result if not services: - os.listdir(pending_conf_dir) + services = os.listdir(pending_conf_dir) for name in services: service_conf = {} service_pending_path = os.path.join(pending_conf_dir, name)