summaryrefslogtreecommitdiff
blob: 9623522edd371bc3cf0e20199fc9a1d2e21100ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:

opts="${opts} reload"

depend() {
		need net
		provide zabbix-agent
}

start() {
	ebegin "Starting Zabbix agent"
	start-stop-daemon --start --exec /usr/sbin/zabbix_agentd
	eend
}
stop() {
	ebegin "Stopping Zabbix agent"
	start-stop-daemon  --stop --pid $PID
	eend
}