From 97b886208c4c814c3e17ff031a91cb9118ed9de9 Mon Sep 17 00:00:00 2001 From: Eugene Wissner Date: Sat, 30 Jul 2022 01:57:07 +0100 Subject: network/postfix-pgsql: Added (postfix with support for PostgreSQL) Signed-off-by: Dave Woodfall Signed-off-by: Willy Sudiarto Raharjo --- network/postfix-pgsql/doinst.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 network/postfix-pgsql/doinst.sh (limited to 'network/postfix-pgsql/doinst.sh') 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 -- cgit v1.2.3