From 89a86e9dda8cc012dd73ec84d0b2f09d5375f070 Mon Sep 17 00:00:00 2001 From: Sebastian Klemke <3669903+packet23@users.noreply.github.com> Date: Sat, 22 Jan 2022 17:15:51 +0100 Subject: [PATCH] disabled rsyslogd pidfile --- core/postfix/start.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/postfix/start.py b/core/postfix/start.py index 74b5bc19..dc5015d7 100755 --- a/core/postfix/start.py +++ b/core/postfix/start.py @@ -85,7 +85,7 @@ if "RELAYUSER" in os.environ: # Configure and start local rsyslog server conf.jinja("/conf/rsyslog.conf", os.environ, "/etc/rsyslog.conf") -os.system("/usr/sbin/rsyslogd -n &") +os.system("/usr/sbin/rsyslogd -niNONE &") # Configure logrotate and start crond if os.environ["POSTFIX_LOG_FILE"] != "": conf.jinja("/conf/logrotate.conf", os.environ, "/etc/logrotate.d/postfix.conf")