21 lines
668 B
Diff
21 lines
668 B
Diff
Subject: run debian-specific configure-instance script from post-install create-missing
|
|
From: Michael Tokarev <mjt@tls.msk.ru
|
|
Tue, 17 Dec 2024 09:48:32 +0300
|
|
Forwarded: not-needed
|
|
Debian-Specific: yes
|
|
|
|
Run debian-provided (mostly chroot setup) script from
|
|
`post-install create-missing`, which is run when starting
|
|
a postfix instance.
|
|
|
|
diff --git a/conf/post-install b/conf/post-install
|
|
--- a/conf/post-install
|
|
+++ b/conf/post-install
|
|
@@ -584,6 +584,7 @@ test -n "$create" && {
|
|
done
|
|
IFS="$BACKUP_IFS"
|
|
done
|
|
+ /usr/lib/postfix/configure-instance.sh || exit 1 # debian-specific: setup chroot
|
|
}
|
|
|
|
# Upgrade existing Postfix configuration files if necessary.
|