summaryrefslogtreecommitdiffstats
path: root/system/hdapsd/doinst.sh
diff options
context:
space:
mode:
author alkos3332010-05-12 23:33:37 +0200
committer Robby Workman2010-05-12 23:33:37 +0200
commit4db878070ac8636be9cad28bdeae6ecf168ff662 (patch)
treee43d809a944368434f339579ecd192c338e0ddba /system/hdapsd/doinst.sh
parenta4f48c6e2036f6636a786f85bbbd41f023230042 (diff)
downloadslackbuilds-4db878070ac8636be9cad28bdeae6ecf168ff662.tar.gz
system/hdapsd: Added to 12.2 repository
Diffstat (limited to 'system/hdapsd/doinst.sh')
-rw-r--r--system/hdapsd/doinst.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/system/hdapsd/doinst.sh b/system/hdapsd/doinst.sh
new file mode 100644
index 0000000000..bfb1617ab2
--- /dev/null
+++ b/system/hdapsd/doinst.sh
@@ -0,0 +1,23 @@
+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.hdapsd.new:
+if [ -e etc/rc.d/rc.hdapsd ]; then
+ cp -a etc/rc.d/rc.hdapsd etc/rc.d/rc.hdapsd.new.incoming
+ cat etc/rc.d/rc.hdapsd.new > etc/rc.d/rc.hdapsd.new.incoming
+ mv etc/rc.d/rc.hdapsd.new.incoming etc/rc.d/rc.hdapsd.new
+fi
+
+config /etc/rc.d/rc.hdapsd.new
+config /etc/hdapsd.conf.new
+