From 96fbaecc2fcbb884b56a8b7f62b87ec10411f81a Mon Sep 17 00:00:00 2001 From: Dario Ernst Date: Sun, 23 Jun 2019 19:00:01 +0000 Subject: [PATCH] Correct executables moved by alpine --- core/postfix/start.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/postfix/start.py b/core/postfix/start.py index 95c97fde..a5a6db06 100755 --- a/core/postfix/start.py +++ b/core/postfix/start.py @@ -54,6 +54,6 @@ convert("/conf/rsyslog.conf", "/etc/rsyslog.conf") multiprocessing.Process(target=start_podop).start() if os.path.exists("/var/run/rsyslogd.pid"): os.remove("/var/run/rsyslogd.pid") -os.system("/usr/lib/postfix/post-install meta_directory=/etc/postfix create-missing") -os.system("/usr/lib/postfix/master &") +os.system("/usr/libexec/postfix/post-install meta_directory=/etc/postfix create-missing") +os.system("/usr/libexec/postfix/master &") os.execv("/usr/sbin/rsyslogd", ["rsyslogd", "-n"])