summaryrefslogtreecommitdiffstats
path: root/system/eibd/doinst.sh
diff options
context:
space:
mode:
author V'yacheslav Stetskevych2010-05-13 01:00:46 +0200
committer David Somero2010-05-13 01:00:46 +0200
commit763c34d0110b69703283458632a408c79a256b4e (patch)
tree6805a648161dd1138a410db74a2da2e2e29ff290 /system/eibd/doinst.sh
parentae29ef7f6e7169ad3bec940f6704c5096fe81e5d (diff)
downloadslackbuilds-763c34d0110b69703283458632a408c79a256b4e.tar.gz
system/eibd: Added to 13.0 repository
Diffstat (limited to 'system/eibd/doinst.sh')
-rw-r--r--system/eibd/doinst.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/system/eibd/doinst.sh b/system/eibd/doinst.sh
new file mode 100644
index 0000000000..7dfab3caae
--- /dev/null
+++ b/system/eibd/doinst.sh
@@ -0,0 +1,21 @@
+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.eibd.new:
+if [ -e etc/rc.d/rc.eibd ]; then
+ cp -a etc/rc.d/rc.eibd etc/rc.d/rc.eibd.new.incoming
+ cat etc/rc.d/rc.eibd.new > etc/rc.d/rc.eibd.new.incoming
+ mv etc/rc.d/rc.eibd.new.incoming etc/rc.d/rc.eibd.new
+fi
+
+config etc/rc.d/rc.eibd.new