diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2014-03-28 20:37:47 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-04-12 13:59:47 -0500 |
commit | 322cfb172d9c04dfc3aa7a1908cb61dbab952443 (patch) | |
tree | 536daa90f7af1be7251fed97ff8a8de6a0dfb375 /system/thermal_daemon/doinst.sh | |
parent | 6a529b5875d133f72f526f2e5301fed2940d03fb (diff) | |
download | slackbuilds-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.sh | 16 |
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 + |