diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:08:37 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:08:37 +0200 |
commit | bee94398ad86544df421952951167b4f5ef299fb (patch) | |
tree | b2dc298f54bc3b03dd1d3333a8253826846e03bb /network/exim/doinst.sh | |
parent | 88c212d1d4cf1662d5f1053fefcd9c52dae6c48c (diff) | |
download | slackbuilds-bee94398ad86544df421952951167b4f5ef299fb.tar.gz |
network/exim: Removed from 13.0 repository
Diffstat (limited to 'network/exim/doinst.sh')
-rw-r--r-- | network/exim/doinst.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/network/exim/doinst.sh b/network/exim/doinst.sh deleted file mode 100644 index 5e76fa1af3..0000000000 --- a/network/exim/doinst.sh +++ /dev/null @@ -1,21 +0,0 @@ -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... -} - -# Keep same perms on rc.exim.new: -if [ -e etc/rc.d/rc.exim ]; then - cp -a etc/rc.d/rc.exim etc/rc.d/rc.exim.new.incoming - cat etc/rc.d/rc.exim.new > etc/rc.d/rc.exim.new.incoming - mv etc/rc.d/rc.exim.new.incoming etc/rc.d/rc.exim.new -fi - -config etc/rc.d/rc.exim.new -config etc/exim/exim.conf.new |