mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-07 06:17:14 +02:00
35 lines
823 B
Plaintext
35 lines
823 B
Plaintext
#!/sbin/openrc-run
|
|
# 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.6.6/init.d/zabbix-agentd,v 1.1 2009/10/05 15:55:23 patrick Exp $
|
|
|
|
# ensure the same file is specified as PidFile in /etc/zabbix/zabbix_agentd.conf
|
|
pidfile=/var/run/zabbix/zabbix_agentd.pid
|
|
user=zabbix
|
|
group=zabbix
|
|
|
|
start_pre() {
|
|
checkpath --owner ${user}:${group} --directory ${pidfile%/*}
|
|
}
|
|
|
|
|
|
depend() {
|
|
need net
|
|
provide zabbix-agent
|
|
use zabbix-server
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting Zabbix agent"
|
|
start-stop-daemon --pidfile ${pidfile} --start --user ${user}:${group} --exec /usr/sbin/zabbix_agentd
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping Zabbix agent"
|
|
start-stop-daemon --stop --user ${user} --pidfile ${pidfile}
|
|
eend $?
|
|
}
|
|
|
|
|