blob: 63cb61db710be98f61c7fcf93e5dccc54955c6cc (
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
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nessus-core/files/nessusd-r8,v 1.1 2006/02/04 14:57:30 vanquirius Exp $
depend() {
need net
}
start() {
ebegin "Starting nessusd"
start-stop-daemon --start --quiet --exec /usr/sbin/nessusd -- -D --quiet
eend $?
}
stop() {
ebegin "Stop nessusd"
start-stop-daemon --stop --quiet --exec /usr/sbin/nessusd
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 $?
}
|