summaryrefslogtreecommitdiff
path: root/system/thermal_daemon/doinst.sh
diff options
context:
space:
mode:
authorRobby Workman <rworkman@slackbuilds.org>2014-03-28 20:37:47 -0500
committerErik Hanson <erik@slackbuilds.org>2014-04-12 13:59:47 -0500
commit322cfb172d9c04dfc3aa7a1908cb61dbab952443 (patch)
tree536daa90f7af1be7251fed97ff8a8de6a0dfb375 /system/thermal_daemon/doinst.sh
parent6a529b5875d133f72f526f2e5301fed2940d03fb (diff)
downloadslackbuilds-322cfb172d9c04dfc3aa7a1908cb61dbab952443.tar.gz
system/thermal-daemon: Miscellaneous cleanups
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/thermal_daemon/doinst.sh')
-rw-r--r--system/thermal_daemon/doinst.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/system/thermal_daemon/doinst.sh b/system/thermal_daemon/doinst.sh
new file mode 100644
index 0000000000..95d2cdd197
--- /dev/null
+++ b/system/thermal_daemon/doinst.sh
@@ -0,0 +1,16 @@
+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...
+}
+
+config etc/thermald/thermal-conf.xml.new
+config etc/thermald/thermal-cpu-cdev-order.xml.new
+