diff options
Diffstat (limited to 'network/postgrey/doinst.sh')
-rw-r--r-- | network/postgrey/doinst.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/network/postgrey/doinst.sh b/network/postgrey/doinst.sh new file mode 100644 index 0000000000..e935335cd0 --- /dev/null +++ b/network/postgrey/doinst.sh @@ -0,0 +1,25 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + rm $NEW + fi +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +config etc/postfix/postgrey_whitelist_clients.new +config etc/postfix/postgrey_whitelist_recipients.new +preserve_perms etc/rc.d/rc.postgrey.new + |