I restarted the box first, and then bought up openvas server.
I have /etc/init.d/openvasd rather than /etc/init.d/openvas-scanner. Could this 
be the problem?

[r...@fedora-vas ~]# less /etc/init.d/openvasd
#!/bin/bash
#
# Init file for OpenVAS server daemon
#
# chkconfig: 35 75 25
# description: OpenVAS server daemon
#
# processname: openvasd
# config:
# pidfile:

# source function library
. /etc/rc.d/init.d/functions


prog="openvasd"
binary=/usr/sbin/openvassd
OPTIONS=""
RETVAL=0

start()
{
        echo -n $"Starting $prog: "
        daemon $binary $OPTIONS
        RETVAL=$?
        echo
}

stop(){
        echo -n $"Stopping $prog: "
        killproc $binary
        RETVAL=$?
        echo
}
case "$1" in
        start)
                start
                ;;
        stop)
                stop
                ;;
        restart)
                stop
                start
                ;;
        status)
                status openvasd
                ;;
        *)
                echo $"Usage: $0 {start|stop|restart|status}"
                RETVAL=1
esac
exit $RETVAL
_______________________________________________
Openvas-discuss mailing list
[email protected]
http://lists.wald.intevation.org/mailman/listinfo/openvas-discuss

Reply via email to