summaryrefslogtreecommitdiffstats
path: root/network/greenbone-security-assistant/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'network/greenbone-security-assistant/doinst.sh')
-rw-r--r--network/greenbone-security-assistant/doinst.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/network/greenbone-security-assistant/doinst.sh b/network/greenbone-security-assistant/doinst.sh
deleted file mode 100644
index 07735821f2..0000000000
--- a/network/greenbone-security-assistant/doinst.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-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.gsad.new:
-if [ -e etc/rc.d/rc.gsad ]; then
- cp -a etc/rc.d/rc.gsad etc/rc.d/rc.gsad.new.incoming
- cat etc/rc.d/rc.gsad.new > etc/rc.d/rc.gsad.new.incoming
- mv etc/rc.d/rc.gsad.new.incoming etc/rc.d/rc.gsad.new
-fi
-
-config etc/rc.d/rc.gsad.new
-config etc/openvas/gsad_log.conf.new
-