diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-05-21 10:34:52 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-23 23:21:39 -0500 |
commit | 9d90d7e5f6e01ef7e85aff0f7c68fccbcd9863e7 (patch) | |
tree | a12774f826ad94f23b568a9bf5c072a0e2ab602c /system/drbd/doinst.sh | |
parent | e98c29db674d3e50b5cb1976cf294557bb1544e6 (diff) | |
download | slackbuilds-9d90d7e5f6e01ef7e85aff0f7c68fccbcd9863e7.tar.gz |
system/drbd-tools: Renamed to 'drbd'
The standalone kernel module package isn't needed any more,
so it's been removed. Therefore, we can simply call this
one 'drbd' instead of 'drbd-tools'
Diffstat (limited to 'system/drbd/doinst.sh')
-rw-r--r-- | system/drbd/doinst.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/system/drbd/doinst.sh b/system/drbd/doinst.sh new file mode 100644 index 0000000000..5963b24bb2 --- /dev/null +++ b/system/drbd/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 |