mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 20:20:30 -04:00
- update to 3.12; [1] - remove etc/rc.d/nagiosstatd from pkg-plist as USE_RC_SUBR deals itself with those files; - remove etc/rc.d/nagios-statd.sh.sample from pkg-plist (forgotten by the submitter). PR: 103913 [1] Submitted by: Jim Shewmaker <jims at bluenotch.com> (maintainer) [1]
35 lines
703 B
Bash
35 lines
703 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: nagiosstatd
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
#
|
|
#
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to enable nagiosstatd:
|
|
# nagiosstatd_enable (bool): Set to "NO" by default.
|
|
# Set it to "YES" to enable nagiosstatd
|
|
#
|
|
|
|
nagiosstatd_enable=${nagiosstatd_enable-"NO"}
|
|
nagiosstatd_flags=${nagiosstatd_flags-""}
|
|
nagiosstatd_pidfile=${nagiosstatd_pidfile-"/var/run/nagiosstatd.pid"}
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name="nagiosstatd"
|
|
#rcvar=`set_rcvar`
|
|
rcvar=${name}_enable
|
|
|
|
pidfile="${nagiosstatd_file}"
|
|
|
|
|
|
command=%%PREFIX%%/sbin/nagios-statd
|
|
|
|
load_rc_config $name
|
|
|
|
start_precmd="export PATH=\"$PATH:/usr/local/bin\""
|
|
|
|
run_rc_command "$1"
|
|
|