From 23d895b509bc59f9e4c0d8b8c75fb383e81d238a Mon Sep 17 00:00:00 2001 From: downtownallday Date: Mon, 27 Jun 2022 14:28:43 -0400 Subject: [PATCH] Fix another postgrey reload error --- management/daemon.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/management/daemon.py b/management/daemon.py index f30a32ab..7d4bff60 100755 --- a/management/daemon.py +++ b/management/daemon.py @@ -678,7 +678,9 @@ def postgrey_whitelist_handler(): contents = request.form["contents"] with open(conf_file, "w") as fp: fp.write(contents) - utils.shell("check_call", ["/bin/systemctl", "reload", "postgrey"]) + # TODO: use "reload" when reload is fixed - it fails starting with ubuntu 22.04 jammy + #utils.shell("check_call", ["/bin/systemctl", "reload", "postgrey"]) + utils.shell("check_call", ["/bin/systemctl", "restart", "postgrey"]) except KeyError: return ("Missing required parameter", 400) except subprocess.CalledProcessError as e: