slackbuilds_ponce/libraries/php-htscanner/doinst.sh
Menno Duursma f521bebc4c libraries/php-htscanner: Added (PHP extention)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
2010-09-21 22:09:37 -05:00

15 lines
381 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/php/htscanner.ini.new