aboutsummaryrefslogtreecommitdiffstats
path: root/nessus/doinst.sh
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-04-03 23:12:36 +0200
committerDanilo M. <danix@danix.xyz>2026-04-03 23:12:36 +0200
commit11735b294450fbb6b4478748c57df2f9969b31ce (patch)
tree1b15658f1eb274712a579ba8141753fcbc28d4ad /nessus/doinst.sh
parent21cdfef9c762bb2e548abc7cf88f9207376abaf2 (diff)
downloadslackware-pentesting-suite-11735b294450fbb6b4478748c57df2f9969b31ce.tar.gz
slackware-pentesting-suite-11735b294450fbb6b4478748c57df2f9969b31ce.zip
remove hydra and nessus packages
Both are already maintained on SBo and identical to upstream. Remove package directories and clean up README and nvchecker.toml. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'nessus/doinst.sh')
-rw-r--r--nessus/doinst.sh43
1 files changed, 0 insertions, 43 deletions
diff --git a/nessus/doinst.sh b/nessus/doinst.sh
deleted file mode 100644
index d27a6df..0000000
--- a/nessus/doinst.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-
-
-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...
-}
-
-preserve_perms() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- if [ -e $OLD ]; then
- cp -a $OLD ${NEW}.incoming
- cat $NEW > ${NEW}.incoming
- mv ${NEW}.incoming $NEW
- fi
- config $NEW
-}
-
-if [ -e /etc/rc.d/rc.nessusd ]; then
- chroot . sh /etc/rc.d/rc.nessusd status > /dev/null 2>&1
- RETVAL=$?
- if [ "$RETVAL" == "0" ]; then
- chroot . sh /etc/rc.d/rc.nessusd stop > /dev/null 2>&1
- fi
-fi
-
-preserve_perms etc/rc.d/rc.nessusd.new
-
-echo ""
-echo "Unpacking Nessus Core Components..."
-chroot . /opt/nessus/sbin/nessuscli install /opt/nessus/var/nessus/plugins-core.tar.gz
-
-echo " - You can start Nessus by typing sh /etc/rc.d/rc.nessusd start"
-echo " - Then go to https://"`hostname`":8834/ to configure your scanner"
-echo ""