summaryrefslogtreecommitdiffstats
path: root/system/corosync/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'system/corosync/doinst.sh')
-rw-r--r--system/corosync/doinst.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/system/corosync/doinst.sh b/system/corosync/doinst.sh
deleted file mode 100644
index 7fcbab704f..0000000000
--- a/system/corosync/doinst.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- rm $NEW
- fi
-}
-
-if [ -e etc/rc.d/rc.corosync ]; then
- cp -a etc/rc.d/rc.corosync etc/rc.d/rc.corosync.new.incoming
- cat etc/rc.d/rc.corosync.new > etc/rc.d/rc.corosync.new.incoming
- mv etc/rc.d/rc.corosync.new.incoming etc/rc.d/rc.corosync.new
-fi
-
-config etc/rc.d/rc.corosync.new