mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
32 lines
439 B
Bash
32 lines
439 B
Bash
#!/bin/sh
|
|
|
|
# Get OpenVAS options
|
|
. /etc/rc.d/rc.openvas.conf
|
|
|
|
PIDFILE="/var/run/openvasad.pid"
|
|
|
|
start() {
|
|
echo "Starting OpenVAS administrator..."
|
|
openvasad --port=${ADM_PORT} ${ADM_OPTIONS}
|
|
}
|
|
|
|
stop() {
|
|
echo "Stopping OpenVAS administrator..."
|
|
kill `cat $PIDFILE`
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart)
|
|
stop
|
|
sleep 1
|
|
start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 (start|stop|restart)"
|
|
esac
|