summaryrefslogtreecommitdiffstats
path: root/network/postfix-pgsql/doinst.sh
diff options
context:
space:
mode:
author Eugene Wissner <belka@caraus.de>2022-07-30 01:57:07 +0100
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2022-07-30 11:26:23 +0700
commit97b886208c4c814c3e17ff031a91cb9118ed9de9 (patch)
tree90129a329aafc6050ce6abc38576532881f59722 /network/postfix-pgsql/doinst.sh
parent6a607f7c7e403061218b03d7783a14073d2e75b0 (diff)
downloadslackbuilds-97b886208c4c814c3e17ff031a91cb9118ed9de9.tar.gz
slackbuilds-97b886208c4c814c3e17ff031a91cb9118ed9de9.tar.xz
network/postfix-pgsql: Added (postfix with support for PostgreSQL)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/postfix-pgsql/doinst.sh')
-rw-r--r--network/postfix-pgsql/doinst.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/network/postfix-pgsql/doinst.sh b/network/postfix-pgsql/doinst.sh
new file mode 100644
index 0000000000..91aaad7e22
--- /dev/null
+++ b/network/postfix-pgsql/doinst.sh
@@ -0,0 +1,14 @@
+config() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ # If there's no config file by that name, mv it over:
+ if [ ! -r $OLD ]; then
+ mv $NEW $OLD
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
+ # toss the redundant copy
+ rm $NEW
+ fi
+ # Otherwise, we leave the .new copy for the admin to consider...
+}
+
+config etc/postfix/dynamicmaps.cf.d/pgsql.cf.new