summaryrefslogtreecommitdiff
path: root/net-analyzer/nessus-agent-bin/files/nessusagent.initd
blob: 6f43fc421e1b2a27dec3c623ceef5b7f59961a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/sbin/openrc-run
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

start() {
	ebegin "Starting nessusagent"
	start-stop-daemon --start --quiet --exec /opt/nessus_agent/sbin/nessus-service -- -D --quiet
	eend $?
}

stop() {
	ebegin "Stopping nessusagent"
	start-stop-daemon --stop --quiet --exec /opt/nessus_agent/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 $?
}