From 5fcf72f62c71bab1c99cc96302a0edf3a9a325fc Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 18 May 2020 02:11:12 +0200 Subject: [PATCH] [psql] Fix hardcoded fix for postgresql status check --- src/yunohost/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yunohost/service.py b/src/yunohost/service.py index 278cea0a4..e8c7b5a57 100644 --- a/src/yunohost/service.py +++ b/src/yunohost/service.py @@ -618,7 +618,7 @@ def _get_services(): if "postgresql" in services: if "description" in services["postgresql"]: del services["postgresql"]["description"] - services["postgresql"]["actual_systemd_service"] = "postgresql@9.6-main" + services["postgresql"]["actual_systemd_service"] = "postgresql@11-main" return services