summaryrefslogtreecommitdiff
path: root/net-mgmt/zabbix/scripts/zabbix-agent.sh.sample
blob: e5728bd24051df2eab89b065e521e4a0e20cbdef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

case "${1}" in
	start)
		echo -n "zabbix-agent "
		zabbix_agentd
		;;
	stop)
		killall zabbix_agentd
		;;
	*)
		echo Usage: `basename ${0}` "{start|stop}"
		;;
esac