From 56a5b5aae2a64d56e1bde6ecd9d69940bd308cd8 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 f12c0743c..2eeb078bc 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