summaryrefslogtreecommitdiffstats
path: root/network/openvas-manager
diff options
context:
space:
mode:
author Dave Woodfall <dave@slackbuilds.org>2022-03-01 04:45:47 +0000
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2022-03-01 19:35:39 +0700
commit8335b829f5851aaaa80ca787e2a67fc9d8c38b4c (patch)
tree3494b67887aa36834a831c65c3b0957f2ce5195d /network/openvas-manager
parent153fbeb32132a6223ea98a26e902b8c555e8a8b7 (diff)
downloadslackbuilds-8335b829f5851aaaa80ca787e2a67fc9d8c38b4c.tar.gz
slackbuilds-8335b829f5851aaaa80ca787e2a67fc9d8c38b4c.tar.xz
network/openvas-manager: Removed.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/openvas-manager')
-rw-r--r--network/openvas-manager/README4
-rw-r--r--network/openvas-manager/doinst.sh27
-rw-r--r--network/openvas-manager/openvas-manager.SlackBuild119
-rw-r--r--network/openvas-manager/openvas-manager.info10
-rw-r--r--network/openvas-manager/rc.openvasmd47
-rw-r--r--network/openvas-manager/slack-desc19
6 files changed, 0 insertions, 226 deletions
diff --git a/network/openvas-manager/README b/network/openvas-manager/README
deleted file mode 100644
index 8906e2a1eb..0000000000
--- a/network/openvas-manager/README
+++ /dev/null
@@ -1,4 +0,0 @@
-openvas-manager (Manager for OpenVAS)
-
-This is the manager module for the Open Vulnerability Assessment
-System (OpenVAS).
diff --git a/network/openvas-manager/doinst.sh b/network/openvas-manager/doinst.sh
deleted file mode 100644
index 62615e72a5..0000000000
--- a/network/openvas-manager/doinst.sh
+++ /dev/null
@@ -1,27 +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...
-}
-
-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
-}
-
-preserve_perms etc/rc.d/rc.openvasmd.new
-config etc/openvas/openvasmd_log.conf.new
-config etc/openvas/pwpolicy.conf.new
diff --git a/network/openvas-manager/openvas-manager.SlackBuild b/network/openvas-manager/openvas-manager.SlackBuild
deleted file mode 100644
index f4b2928124..0000000000
--- a/network/openvas-manager/openvas-manager.SlackBuild
+++ /dev/null
@@ -1,119 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for openvas-manager
-
-# Copyright 2014-2015,2017 Kent Fritz, Mountain View, CA
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=openvas-manager
-VERSION=${VERSION:-6.0.11}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
-if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
- echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
- exit 0
-fi
-
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
- -o -perm 511 \) -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-
-mkdir -p build
-cd build
- cmake \
- -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DLOCALSTATEDIR=/var \
- -DSYSCONFDIR=/etc \
- -DCMAKE_BUILD_TYPE=Release ..
- make
- make install DESTDIR=$PKG
-cd ..
-
-mkdir -p $PKG/etc/rc.d
-cat $CWD/rc.openvasmd > $PKG/etc/rc.d/rc.openvasmd.new
-chmod 0644 $PKG/etc/rc.d/rc.openvasmd.new
-mv $PKG/etc/openvas/openvasmd_log.conf $PKG/etc/openvas/openvasmd_log.conf.new
-mv $PKG/etc/openvas/pwpolicy.conf $PKG/etc/openvas/pwpolicy.conf.new
-
-find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-mv $PKG/usr/share/man $PKG/usr
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-mv $PKG/usr/share/doc/$PRGNAM/* $PKG/usr/doc/$PRGNAM-$VERSION
-rm -r $PKG/usr/share/doc
-cp -a CHANGES COPYING ChangeLog INSTALL README TODO \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/network/openvas-manager/openvas-manager.info b/network/openvas-manager/openvas-manager.info
deleted file mode 100644
index ef14d38440..0000000000
--- a/network/openvas-manager/openvas-manager.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="openvas-manager"
-VERSION="6.0.11"
-HOMEPAGE="http://www.openvas.org"
-DOWNLOAD="http://wald.intevation.org/frs/download.php/2445/openvas-manager-6.0.11.tar.gz"
-MD5SUM="a9329a2e2329b2d1b7863d07ea0a8c22"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="openvas-libraries"
-MAINTAINER="Kent Fritz"
-EMAIL="fritz.kent@gmail.com"
diff --git a/network/openvas-manager/rc.openvasmd b/network/openvas-manager/rc.openvasmd
deleted file mode 100644
index 78595eea78..0000000000
--- a/network/openvas-manager/rc.openvasmd
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/sh
-#
-# /etc/rc.d/rc.openvasmd
-#
-# Start/stop/restart the OpenVAS Manager Daemon.
-#
-# To make OpenVAS Manager start automatically at boot, make this
-# file executable: chmod 755 /etc/rc.d/rc.openvasmd
-# and add to rc.local:
-# if [ -x /etc/rc.d/rc.openvasmd ]; then
-# . /etc/rc.d/rc.openvasmd start
-# fi
-#
-
-OPENVASMD_PATH=/usr/sbin
-OPENVASMD_BIN=openvasmd
-OPENVASMD_OPTIONS="-a 127.0.0.1 --gnutls-priorities=SECURE128:-VERS-SSL3.0"
-OPENVASMD_CMD="$OPENVASMD_PATH/$OPENVASMD_BIN $OPENVASMD_OPTIONS"
-
-openvasmd_start() {
- echo Starting OpenVAS Manager: $OPENVASMD_CMD
- $OPENVASMD_CMD
-}
-
-openvasmd_stop() {
- echo "Stopping OpenVAS Manager"
- /bin/killall $OPENVASMD_BIN
-}
-
-openvasmd_restart() {
- openvasmd_stop
- openvasmd_start
-}
-
-case "$1" in
-'start')
- openvasmd_start
- ;;
-'stop')
- openvasmd_stop
- ;;
-'restart')
- openvasmd_restart
- ;;
-*)
- echo "usage $0 start|stop|restart|reload"
-esac
diff --git a/network/openvas-manager/slack-desc b/network/openvas-manager/slack-desc
deleted file mode 100644
index 37a73de886..0000000000
--- a/network/openvas-manager/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description.
-# Line up the first '|' above the ':' following the base package name, and
-# the '|' on the right side marks the last column you can put a character in.
-# You must make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-openvas-manager: openvas-manager (Manager for OpenVAS)
-openvas-manager:
-openvas-manager: This is the manager module for the Open Vulnerability Assessment
-openvas-manager: System (OpenVAS).
-openvas-manager:
-openvas-manager: For more information, please refer to the OpenVAS website available
-openvas-manager: at http://www.openvas.org/ .
-openvas-manager:
-openvas-manager:
-openvas-manager:
-openvas-manager: