You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
407 B
25 lines
407 B
2 years ago
|
#!/bin/sh
|
||
|
|
||
|
##########################################################
|
||
|
###### Zabbix agent daemon init script
|
||
|
##########################################################
|
||
|
|
||
|
case $1 in
|
||
|
|
||
|
start)
|
||
|
/usr/local/sbin/zabbix_agentd -c /usr/local/etc/zabbix_agentd.conf ;;
|
||
|
|
||
|
stop)
|
||
|
kill -TERM `cat /tmp/zabbix_agentd.pid` ;;
|
||
|
|
||
|
restart)
|
||
|
$0 stop
|
||
|
sleep 10
|
||
|
$0 start
|
||
|
;;
|
||
|
|
||
|
*)
|
||
|
echo "Usage: $0 start|stop|restart"
|
||
|
exit 1
|
||
|
esac
|