diff options
author | Ricardson Williams <ricardsonwilliams@yahoo.com.br> | 2010-05-11 20:02:02 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:02:02 +0200 |
commit | 4fd7a6d9d4346a0ea09895a4fd991b4f68541825 (patch) | |
tree | 63ce181959c17b75bd3fd4c9e1cc3030e959ed91 /system/monit/doinst.sh | |
parent | 9e4c1ae9755ae816f7badc26734aeda0ae48c658 (diff) | |
download | slackbuilds-4fd7a6d9d4346a0ea09895a4fd991b4f68541825.tar.gz |
system/monit: Added to 12.0 repository
Diffstat (limited to 'system/monit/doinst.sh')
-rw-r--r-- | system/monit/doinst.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/system/monit/doinst.sh b/system/monit/doinst.sh new file mode 100644 index 0000000000..0899c24df5 --- /dev/null +++ b/system/monit/doinst.sh @@ -0,0 +1,24 @@ +#!/bin/sh + +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.monit.new: +if [ -e etc/rc.d/rc.monit ]; then + cp -a etc/rc.d/rc.monit etc/rc.d/rc.monit.new.incoming + cat etc/rc.d/rc.monit.new > etc/rc.d/rc.monit.new.incoming + mv etc/rc.d/rc.monit.new.incoming etc/rc.d/rc.monit.new +fi + +config etc/rc.d/rc.monit.new + |