summaryrefslogtreecommitdiffstats
path: root/misc/g15daemon/doinst.sh
diff options
context:
space:
mode:
author Alan Alberghini <414N@slacky.it>2010-05-13 00:59:23 +0200
committer Robby Workman <rworkman@slackbuilds.org>2010-05-13 00:59:23 +0200
commitbbbed6b77af2c23f7cb66cee4ee6a2e1340d113c (patch)
tree3566601143e19f26a2c6aef9755728f3920268e0 /misc/g15daemon/doinst.sh
parenta28bbe67f2dfc7d2140b437de011c8e654eefad4 (diff)
downloadslackbuilds-bbbed6b77af2c23f7cb66cee4ee6a2e1340d113c.tar.gz
slackbuilds-bbbed6b77af2c23f7cb66cee4ee6a2e1340d113c.tar.xz
misc/g15daemon: Added to 13.0 repository
Diffstat (limited to 'misc/g15daemon/doinst.sh')
-rw-r--r--misc/g15daemon/doinst.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/misc/g15daemon/doinst.sh b/misc/g15daemon/doinst.sh
new file mode 100644
index 0000000000..ec1722b4b5
--- /dev/null
+++ b/misc/g15daemon/doinst.sh
@@ -0,0 +1,22 @@
+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.g15daemon.new:
+if [ -e etc/rc.d/rc.g15daemon ]; then
+ cp -a etc/rc.d/rc.g15daemon etc/rc.d/rc.g15daemon.new.incoming
+ cat etc/rc.d/rc.g15daemon.new > etc/rc.d/rc.g15daemon.new.incoming
+ mv etc/rc.d/rc.g15daemon.new.incoming etc/rc.d/rc.g15daemon.new
+fi
+
+config etc/rc.d/rc.g15daemon.new
+