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.
32 lines
689 B
Bash
32 lines
689 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: rwhoisd
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# rwhoisd_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable rwhoisd.
|
|
# rwhoisd_config (path): Set to %%PREFIX%%/etc/rwhoisd/rwhoisd.conf
|
|
# by default.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="rwhoisd"
|
|
rcvar=rwhoisd_enable
|
|
|
|
command=%%PREFIX%%/sbin/${name}
|
|
pidfile=${rwhoisd_pidfile}
|
|
|
|
load_rc_config $name
|
|
|
|
: ${rwhoisd_enable="NO"}
|
|
: ${rwhoisd_config="%%PREFIX%%/etc/rwhoisd/rwhoisd.conf"}
|
|
: ${rwhoisd_pidfile="/var/run/${name}/${name}.pid"}
|
|
|
|
command_args="-d -c $rwhoisd_config"
|
|
|
|
run_rc_command "$1"
|