summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer/zabbix/files/1.4.5/init.d/zabbix-agentd')
-rw-r--r--net-analyzer/zabbix/files/1.4.5/init.d/zabbix-agentd22
1 files changed, 0 insertions, 22 deletions
diff --git a/net-analyzer/zabbix/files/1.4.5/init.d/zabbix-agentd b/net-analyzer/zabbix/files/1.4.5/init.d/zabbix-agentd
deleted file mode 100644
index ead75dbdafa3..000000000000
--- a/net-analyzer/zabbix/files/1.4.5/init.d/zabbix-agentd
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zabbix/files/1.4.5/init.d/zabbix-agentd,v 1.1 2008/03/29 07:05:46 wschlich Exp $
-
-depend() {
- need net
- provide zabbix-agent
- use zabbix-server
-}
-
-start() {
- ebegin "Starting Zabbix agent"
- start-stop-daemon --start -c zabbix:zabbix --exec /usr/sbin/zabbix_agentd
- eend $?
-}
-
-stop() {
- ebegin "Stopping Zabbix agent"
- start-stop-daemon --stop -u zabbix --pidfile /var/run/zabbix/zabbix_agentd.pid
- eend $?
-}