From 59dfa3b420defb732adb98d3fcb96cfa330ddb99 Mon Sep 17 00:00:00 2001 From: "usman@cyberpersons.com" Date: Mon, 17 Apr 2023 16:03:07 +0500 Subject: [PATCH] bug fix: https://github.com/usmannasir/cyberpanel/issues/1044 --- plogical/renew.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plogical/renew.py b/plogical/renew.py index 512514e39..9eb4a4a99 100644 --- a/plogical/renew.py +++ b/plogical/renew.py @@ -125,6 +125,9 @@ class Renew: command = 'systemctl restart dovecot' ProcessUtilities.normalExecutioner(command) + command = 'systemctl restart lscpd' + ProcessUtilities.normalExecutioner(command) + except BaseException as msg: logging.writeToFile(str(msg) + '. Renew.SSLObtainer')