83eb2c3700
literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
26 lines
490 B
Bash
26 lines
490 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: zabbix_agentd
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to
|
|
# enable zabbix_agentd:
|
|
#
|
|
# zabbix_agentd_enable (bool): Set to NO by default. Set it to YES to
|
|
# enable zabbix_agentd.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="zabbix_agentd"
|
|
rcvar=zabbix_agentd_enable
|
|
|
|
command="%%PREFIX%%/sbin/${name}"
|
|
required_files="%%ETCDIR%%/${name}.conf"
|
|
|
|
load_rc_config $name
|
|
|
|
: ${zabbix_agentd_enable="NO"}
|
|
|
|
run_rc_command "$1"
|