summaryrefslogtreecommitdiffstats
path: root/source/n/nn/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'source/n/nn/doinst.sh')
-rw-r--r--source/n/nn/doinst.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/source/n/nn/doinst.sh b/source/n/nn/doinst.sh
deleted file mode 100644
index 80f6fce0d..000000000
--- a/source/n/nn/doinst.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-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/nntpserver.new
-# If you already have a different etc/nntpserver then this one is useless:
-rm -f etc/nntpserver.new
-