summaryrefslogtreecommitdiff
path: root/system/corosync/doinst.sh
diff options
context:
space:
mode:
authorWilly Sudiarto Raharjo <willysr@slackbuilds.org>2013-11-20 08:31:54 +0700
committerRobby Workman <rworkman@slackbuilds.org>2013-11-24 00:07:24 -0600
commit8cac27ed27d4ae8621f3c47ab2d3b0b2ba96b5f9 (patch)
tree3d4add9a80793df8bd8da156110ba0df1c8e2a0a /system/corosync/doinst.sh
parentd6cdec36170d63c58983af6ff412f3b57d3e632e (diff)
downloadslackbuilds-8cac27ed27d4ae8621f3c47ab2d3b0b2ba96b5f9.tar.gz
system/corosync: Removed (no SBo maintainer)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
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