blob: 20efe90b4b929ff3188b1f302989d7eafb9976ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/bin/sh
# Get OpenVAS options
. /etc/rc.d/rc.openvas.conf
PIDFILE="/var/run/gsad.pid"
start() {
echo "Starting Greenbone Security Assistant..."
gsad --mport=${MAN_PORT} ${GSA_OPTIONS}
}
stop() {
echo "Stopping Greenbone Security Assistant..."
kill `cat $PIDFILE`
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 1
start
;;
*)
echo "Usage: $0 (start|stop|restart)"
esac
|