mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
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.
31 lines
638 B
Bash
31 lines
638 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: ndo2db
|
|
# REQUIRE: DAEMON nagios
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
# Add the following lines to /etc/rc.conf to enable ndo2db:
|
|
# ndo2db_enable (bool): Set to "NO" by default.
|
|
# ndo2db_flags (str): Set to "" by default.
|
|
# ndo2db_configfile (str): Set to "%%PREFIX%%/etc/nagios/ndo2db.cfg" by default.
|
|
|
|
: ${ndo2db_enable="NO"}
|
|
: ${ndo2db_configfile="%%PREFIX%%/etc/nagios/ndo2db.cfg"}
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ndo2db"
|
|
rcvar=ndo2db_enable
|
|
|
|
command="%%PREFIX%%/bin/ndo2db-3x"
|
|
required_files="${ndo2db_configfile}"
|
|
|
|
load_rc_config $name
|
|
|
|
command_args="-c ${ndo2db_configfile}"
|
|
|
|
run_rc_command "$1"
|