diff options
author | Larry Hajali <larryhaja@gmail.com> | 2014-09-07 08:11:07 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-09-07 08:11:07 +0700 |
commit | 91eb0c9a99801b90f52ca0192fd89d7c76f651d7 (patch) | |
tree | 6c07b9794bd66ce69a7e649b7735677ea4740b4a /development/ldns/doinst.sh | |
parent | 95830fd236cf42d4003f103b01bd8ab9d1022639 (diff) | |
download | slackbuilds-91eb0c9a99801b90f52ca0192fd89d7c76f651d7.tar.gz |
development/ldns: Updated for version 1.6.17 + new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/ldns/doinst.sh')
-rw-r--r-- | development/ldns/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/development/ldns/doinst.sh b/development/ldns/doinst.sh new file mode 100644 index 0000000000..bf19a78eb6 --- /dev/null +++ b/development/ldns/doinst.sh @@ -0,0 +1,14 @@ +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/ldns/root.key.new |