slackbuilds_ponce/system/hddtemp/doinst.sh
Dominik Drobek 8ee39c0f7f
system/hddtemp: Update Script.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2020-02-19 17:33:22 +07:00

16 lines
414 B
Bash

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/hddtemp/hddtemp.db.new
config etc/rc.d/rc.hddtemp.new