slackbuilds_ponce/system/tiger/doinst.sh
pyllyukko b663f5c1fe system/tiger: Added (Report system security vulnerabilities)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
2011-10-22 10:17:07 -02:00

18 lines
496 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/tiger/cronrc.new
config etc/tiger/tigerrc.new
config etc/tiger/tiger.ignore.new
config etc/cron.d/tiger.new
config etc/default/tiger.new