slackbuilds_ponce/network/sqlmap/doinst.sh
Brenton Earl 57d0dbb7d6
network/sqlmap: Updated for version 1.0.12.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2016-12-17 06:55:49 +07:00

13 lines
367 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/sqlmap.conf.new