aboutsummaryrefslogtreecommitdiff
path: root/system/drbd/doinst.sh
diff options
context:
space:
mode:
authorZordrak <slackbuilds@tpa.me.uk>2010-05-13 01:00:46 +0200
committerRobby Workman <rworkman@slackbuilds.org>2010-05-13 01:00:46 +0200
commitae29ef7f6e7169ad3bec940f6704c5096fe81e5d (patch)
tree670d21ef30e2684b7d6125a259d6b6b5d095662f /system/drbd/doinst.sh
parente9baf9a07c6c94a987120475b0538fc7cd3410d6 (diff)
system/drbd: Added to 13.0 repository
Diffstat (limited to 'system/drbd/doinst.sh')
-rw-r--r--system/drbd/doinst.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/system/drbd/doinst.sh b/system/drbd/doinst.sh
new file mode 100644
index 000000000000..e6e47c823c0e
--- /dev/null
+++ b/system/drbd/doinst.sh
@@ -0,0 +1,25 @@
+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
+
+chroot . /sbin/depmod -ae @KERNEL@
+