blob: 58c0529b40997bb37c99bdd53b4b5e319b407462 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
case "${1}" in
start)
echo -n "zabbix "
zabbix_suckerd
zabbix_trapperd
;;
stop)
killall zabbix_suckerd
killall zabbix_trapperd
;;
*)
echo Usage: `basename ${0}` "{start|stop}"
;;
esac
|