summaryrefslogtreecommitdiff
path: root/network/pdnsd/doinst.sh
diff options
context:
space:
mode:
authorAndré Geraldo Vieira <andre.geraldo@gmail.com>2010-05-12 23:32:39 +0200
committerDavid Somero <xgizzmo@slackbuilds.org>2010-05-12 23:32:39 +0200
commitdcfc8298b253229af2f918842754ef61650698b7 (patch)
tree0decf36776499766709153945bba7dc2a9a4f30d /network/pdnsd/doinst.sh
parent4ecb4572b7ec201523db30d821d24da770ee73af (diff)
downloadslackbuilds-dcfc8298b253229af2f918842754ef61650698b7.tar.gz
network/pdnsd: Added to 12.2 repository
Diffstat (limited to 'network/pdnsd/doinst.sh')
-rw-r--r--network/pdnsd/doinst.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/network/pdnsd/doinst.sh b/network/pdnsd/doinst.sh
new file mode 100644
index 0000000000..b09bee1dad
--- /dev/null
+++ b/network/pdnsd/doinst.sh
@@ -0,0 +1,23 @@
+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.pdnsd.new:
+if [ -e etc/rc.d/rc.pdnsd ]; then
+ cp -a etc/rc.d/rc.pdnsd etc/rc.d/rc.pdnsd.new.incoming
+ cat etc/rc.d/rc.pdnsd.new > etc/rc.d/rc.pdnsd.new.incoming
+ mv etc/rc.d/rc.pdnsd.new.incoming etc/rc.d/rc.pdnsd.new
+fi
+
+config etc/rc.d/rc.pdnsd.new
+config etc/pdnsd.conf.new
+