summaryrefslogtreecommitdiffstats
path: root/system/thinkfan/doinst.sh
diff options
context:
space:
mode:
author Benjamin Trigona-Harany <slackbuilds@jaxartes.net>2014-02-07 22:53:06 +0700
committer Erik Hanson <erik@slackbuilds.org>2014-02-08 11:10:12 -0600
commit8e5c9ccf2412873107709343f14a965b86882a02 (patch)
tree3628cc47eab3331e780e6007351c79b09500e9be /system/thinkfan/doinst.sh
parentaf347ec2dc475738eb6103af53567802acd1cf2b (diff)
downloadslackbuilds-8e5c9ccf2412873107709343f14a965b86882a02.tar.gz
slackbuilds-8e5c9ccf2412873107709343f14a965b86882a02.tar.xz
system/thinkfan: Added (fan control program).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/thinkfan/doinst.sh')
-rw-r--r--system/thinkfan/doinst.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/system/thinkfan/doinst.sh b/system/thinkfan/doinst.sh
new file mode 100644
index 0000000000..0d77ed1bdb
--- /dev/null
+++ b/system/thinkfan/doinst.sh
@@ -0,0 +1,25 @@
+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...
+}
+
+preserve_perms() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ if [ -e $OLD ]; then
+ cp -a $OLD ${NEW}.incoming
+ cat $NEW > ${NEW}.incoming
+ mv ${NEW}.incoming $NEW
+ fi
+ config $NEW
+}
+
+preserve_perms etc/rc.d/rc.thinkfan.new