summaryrefslogtreecommitdiff
blob: 912a013baf7927c6d8250705607777180c096627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zabbix/files/1.6.6/init.d/zabbix-proxy,v 1.2 2011/12/30 09:46:32 polynomial-c Exp $

depend() {
	need net
	#use mysql postgresql
}

start() {
	ebegin "Starting Zabbix proxy"
	start-stop-daemon --start -u zabbix:zabbix --exec /usr/sbin/zabbix_proxy
	eend $?
}

stop() {
	ebegin "Stopping Zabbix proxy"
	start-stop-daemon --stop -u zabbix --pidfile /var/run/zabbix/zabbix_proxy.pid
	eend $?
}