summaryrefslogtreecommitdiffstats
path: root/system/watchdog/doinst.sh
diff options
context:
space:
mode:
author Menno Duursma <druiloor@zonnet.nl>2010-09-17 04:49:28 -0400
committer Robby Workman <rworkman@slackbuilds.org>2010-09-21 22:09:38 -0500
commitb0e9330a8bb8a7808a0459096ea0653a0f201d7c (patch)
treeb408b39b97b532e43036c0bb123e8ecb637ff99d /system/watchdog/doinst.sh
parentf521bebc4ceb289fb95e940cdff0338969b2456d (diff)
downloadslackbuilds-b0e9330a8bb8a7808a0459096ea0653a0f201d7c.tar.gz
slackbuilds-b0e9330a8bb8a7808a0459096ea0653a0f201d7c.tar.xz
system/watchdog: Added (Linux watchdog timer daemon)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/watchdog/doinst.sh')
-rw-r--r--system/watchdog/doinst.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/system/watchdog/doinst.sh b/system/watchdog/doinst.sh
new file mode 100644
index 0000000000..9d8334e29c
--- /dev/null
+++ b/system/watchdog/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.watchdog:
+if [ -e etc/rc.d/rc.watchdog ]; then
+ cp -a etc/rc.d/rc.watchdog etc/rc.d/rc.watchdog.new.incoming
+ cat etc/rc.d/rc.watchdog.new > etc/rc.d/rc.watchdog.new.incoming
+ mv etc/rc.d/rc.watchdog.new.incoming etc/rc.d/rc.watchdog.new
+fi
+
+config etc/rc.d/rc.watchdog.new
+config etc/watchdog.conf.new
+