summaryrefslogtreecommitdiffstats
path: root/network/unbound/doinst.sh
diff options
context:
space:
mode:
author Gerardo Zamudio <gerardo.zamudio@linux.com>2015-04-17 01:13:40 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2015-04-17 01:13:40 +0700
commit13a40781c5cd3a005f8d47a21b6ad37588d8d193 (patch)
treee17552523f6d5355fec4c7547cf831194de7cc3c /network/unbound/doinst.sh
parent517147a506887e555dd909f41e03e23c8714b47b (diff)
downloadslackbuilds-13a40781c5cd3a005f8d47a21b6ad37588d8d193.tar.gz
slackbuilds-13a40781c5cd3a005f8d47a21b6ad37588d8d193.tar.xz
network/unbound: Added (DNSSEC resolver).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/unbound/doinst.sh')
-rw-r--r--network/unbound/doinst.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/network/unbound/doinst.sh b/network/unbound/doinst.sh
new file mode 100644
index 0000000000..2914d5783b
--- /dev/null
+++ b/network/unbound/doinst.sh
@@ -0,0 +1,26 @@
+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...
+}
+
+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
+}
+
+preserve_perms etc/rc.d/rc.unbound.new
+config etc/unbound/unbound.conf.new