[psql] Fix hardcoded fix for postgresql status check

This commit is contained in:
Alexandre Aubin 2020-05-18 02:11:12 +02:00
parent 4920d4f907
commit c70b0ae4f2

View file

@ -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