summaryrefslogtreecommitdiffstats
path: root/system/drbd-tools/doinst.sh
diff options
context:
space:
mode:
author Robby Workman2010-05-21 17:34:52 +0200
committer Robby Workman2010-05-24 06:21:39 +0200
commit9d90d7e5f6e01ef7e85aff0f7c68fccbcd9863e7 (patch)
treea12774f826ad94f23b568a9bf5c072a0e2ab602c /system/drbd-tools/doinst.sh
parente98c29db674d3e50b5cb1976cf294557bb1544e6 (diff)
downloadslackbuilds-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-tools/doinst.sh')
-rw-r--r--system/drbd-tools/doinst.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/system/drbd-tools/doinst.sh b/system/drbd-tools/doinst.sh
deleted file mode 100644
index 5963b24bb2..0000000000
--- a/system/drbd-tools/doinst.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-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