diff options
author | dsomero <xgizzmo@gmail.com> | 2010-05-21 23:46:55 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-24 16:09:20 -0500 |
commit | 3974b80745717853cadb1cc680573d898d056a73 (patch) | |
tree | a501201bb9cd6214e3a7fc0379bb0d3f2471770c /system/watchdog/doinst.sh | |
parent | 3954eb29a8536a79496e481233d1786ff0f0bd49 (diff) |
system/watchdog: Removed (download link broken)
Diffstat (limited to 'system/watchdog/doinst.sh')
-rw-r--r-- | system/watchdog/doinst.sh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/system/watchdog/doinst.sh b/system/watchdog/doinst.sh deleted file mode 100644 index 9d8334e29c7c6..0000000000000 --- a/system/watchdog/doinst.sh +++ /dev/null @@ -1,23 +0,0 @@ -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 - |