diff options
Diffstat (limited to 'cyrus-sasl/doinst.sh')
-rw-r--r-- | cyrus-sasl/doinst.sh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/cyrus-sasl/doinst.sh b/cyrus-sasl/doinst.sh deleted file mode 100644 index d2810248..00000000 --- a/cyrus-sasl/doinst.sh +++ /dev/null @@ -1,18 +0,0 @@ -## Slackware install script for cyrus-sasl-mysql -## 20050920 Stefano Stabellini -# - -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/rc.d/rc.saslauthd.new |