slackbuilds_ponce/system/drbd/doinst.sh
Robby Workman 9d90d7e5f6 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'
2010-05-23 23:21:39 -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