slackbuilds_ponce/network/siege/doinst.sh
Heinz Wiesinger e1e1b9eeab network/siege: Updated for version 3.0.5, added a license.
Script cleanup, moved from misc to network

Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
2013-12-02 00:58:04 -06:00

16 lines
408 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/siege/siegerc.new
config etc/siege/urls.txt.new