]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/initscripts/packages/zabbix_agentd
zabbix_agentd: New addon
[people/pmueller/ipfire-2.x.git] / src / initscripts / packages / zabbix_agentd
CommitLineData
06fc6170
AK
1#!/bin/sh
2########################################################################
3# Begin $rc_base/init.d/zabbix_agentd
4#
5# Description : This script starts the Zabbix Agent as a daemon (zabbix_agentd)
6#
7# Authors : Alexander Koch (ipfire@starkstromkonsument.de)
8#
9# Version : 01.00
10#
11# Notes :
12#
13########################################################################
14
15. /etc/sysconfig/rc
16. ${rc_functions}
17
18case "${1}" in
19 start)
20 boot_mesg "Starting Zabbix Agent..."
21 loadproc /usr/sbin/zabbix_agentd -c /etc/zabbix_agentd/zabbix_agentd.conf
22 ;;
23
24 stop)
25 boot_mesg "Stopping Zabbix Agent..."
26 killproc /usr/sbin/zabbix_agentd
27 ;;
28
29 restart)
30 ${0} stop
31 sleep 1
32 ${0} start
33 ;;
34
35 status)
36 statusproc /usr/sbin/zabbix_agentd
37 ;;
38
39 *)
40 echo "Usage: ${0} {start|stop|restart|status}"
41 exit 1
42 ;;
43esac
44
45# End $rc_base/init.d/zabbix_agentd