diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-02-26 13:09:07 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-02-26 13:09:07 +0700 |
commit | 6ecb97974cde87cfe0783157ef67a69a7bd65f63 (patch) | |
tree | 37e5648bec498e3f9075bd92a5fe3ff98564294d /system/thermal_daemon/doinst.sh | |
parent | 44889319aa503ac6a4784997e4d77b2f96ed0efc (diff) |
system/thermal_daemon: Removed (replaced with thermald).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/thermal_daemon/doinst.sh')
-rw-r--r-- | system/thermal_daemon/doinst.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/system/thermal_daemon/doinst.sh b/system/thermal_daemon/doinst.sh deleted file mode 100644 index 120570687d4b4..0000000000000 --- a/system/thermal_daemon/doinst.sh +++ /dev/null @@ -1,15 +0,0 @@ -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 |