summaryrefslogtreecommitdiffstats
path: root/network/munge/doinst.sh
diff options
context:
space:
mode:
author Emmanuel N. Millán2015-08-19 00:55:02 +0200
committer Willy Sudiarto Raharjo2015-08-20 22:25:02 +0200
commit6ac3d63979b80e5f18535fad3b50d9e4c5d4cf9b (patch)
tree8bd04af9d655515df8d3ceea02243153a8552e69 /network/munge/doinst.sh
parentf67e406bc2416812041a4cfa9225bf48c626e775 (diff)
downloadslackbuilds-6ac3d63979b80e5f18535fad3b50d9e4c5d4cf9b.tar.gz
network/munge: Added (an authentication service).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/munge/doinst.sh')
-rw-r--r--network/munge/doinst.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/network/munge/doinst.sh b/network/munge/doinst.sh
new file mode 100644
index 0000000000..c38dbdaa81
--- /dev/null
+++ b/network/munge/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.munge.new
+config etc/default/munge.new