mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-18 04:40:56 +02:00
22 lines
673 B
Text
22 lines
673 B
Text
#!/sbin/runscript
|
|
# Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nessus-bin/files/nessusd-initd,v 1.1 2006/11/29 16:53:30 jokey Exp $
|
|
|
|
start() {
|
|
ebegin "Starting nessus-service"
|
|
start-stop-daemon --start --quiet --exec /opt/nessus/sbin/nessus-service -- -D --quiet
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping nessus-service"
|
|
start-stop-daemon --stop --quiet --exec /opt/nessus/sbin/nessus-service
|
|
einfo "Waiting for the environment to be sane"
|
|
while [ -n "$RUNNING" ] ; do
|
|
sleep 1
|
|
RUNNING=$(ps aux | grep -m 1 nessusd: | grep -v grep)
|
|
done
|
|
sleep 3
|
|
eend $?
|
|
}
|