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, 17 insertions, 0 deletions
diff --git a/system/corosync/doinst.sh b/system/corosync/doinst.sh
new file mode 100644
index 0000000000..7fcbab704f
--- /dev/null
+++ b/system/corosync/doinst.sh
@@ -0,0 +1,17 @@
+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