diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-06-08 04:16:18 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-06-09 02:22:12 -0500 |
commit | f23b4ee8974e51e737f11b5c267572f574c23bce (patch) | |
tree | 2f558a54ab27e1079e53124948d594261b9cf1db /system/drbd-tools/doinst.sh | |
parent | eb6178414c6f24578304753f616bf2a389d8e8e5 (diff) | |
download | slackbuilds-f23b4ee8974e51e737f11b5c267572f574c23bce.tar.gz |
system/drbd-tools: Renamed from system/drbd per maintainer
The drbd kernel module is part of the mainline kernel shipped
with Slackware now, but to avoid confusion (and to make a future
submission of drbd-kernel for users that want a newer module),
Zordrak (maintainer) requested that the name change from our
13.0 repo be reverted.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/drbd-tools/doinst.sh')
-rw-r--r-- | system/drbd-tools/doinst.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/system/drbd-tools/doinst.sh b/system/drbd-tools/doinst.sh new file mode 100644 index 0000000000..5963b24bb2 --- /dev/null +++ b/system/drbd-tools/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.drbd.new: +if [ -e etc/rc.d/rc.drbd ]; then + cp -a etc/rc.d/rc.drbd etc/rc.d/rc.drbd.new.incoming + cat etc/rc.d/rc.drbd.new > etc/rc.d/rc.drbd.new.incoming + mv etc/rc.d/rc.drbd.new.incoming etc/rc.d/rc.drbd.new +fi + +config etc/rc.d/rc.drbd.new +config etc/drbd.conf.new +config etc/drbd.d/global_common.conf.new |