slackbuilds_ponce/network/axel/doinst.sh
Jostein Berntsen 48fce7e256
network/axel: Updated for version 2.16.1 + new maintainer.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2018-10-06 07:25:17 +07:00

14 lines
366 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/axelrc.new