slackbuilds_ponce/network/openvas-scanner/doinst.sh

22 lines
691 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...
}
# Keep same perms on rc.openvassd.new:
if [ -e etc/rc.d/rc.openvassd ]; then
cp -a etc/rc.d/rc.openvassd etc/rc.d/rc.openvassd.new.incoming
cat etc/rc.d/rc.openvassd.new > etc/rc.d/rc.openvassd.new.incoming
mv etc/rc.d/rc.openvassd.new.incoming etc/rc.d/rc.openvassd.new
fi
config etc/rc.d/rc.openvassd.new
config etc/rc.d/rc.openvas.conf.new