slackbuilds_ponce/system/drbd-tools/doinst.sh
Robby Workman f23b4ee897 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>
2010-06-09 02:22:12 -05:00

23 lines
683 B
Bash

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