diff options
Diffstat (limited to 'network/openvas-client/doinst.sh')
-rw-r--r-- | network/openvas-client/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/network/openvas-client/doinst.sh b/network/openvas-client/doinst.sh new file mode 100644 index 0000000000..3a0d87b6c3 --- /dev/null +++ b/network/openvas-client/doinst.sh @@ -0,0 +1,14 @@ +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/openvas/openvas-client_log.conf.new + |