Move /etc/conf.d/rc to /etc/rc.conf.

Lowercase all configurable variables, non configurations remain uppercase.
Replace rc_env_bool with rc_yesno.
Split localmount info procfs (Linux) and dumpon, savecore (BSD)
This commit is contained in:
Roy Marples
2007-11-23 12:04:11 +00:00
parent f077f179ed
commit d81def80b0
64 changed files with 755 additions and 477 deletions

View File

@@ -25,14 +25,15 @@
# SUCH DAMAGE.
command=/usr/sbin/rarpd
command_args="-f ${RARPD_ARGS}"
command_args="-f ${rarpd_args}"
pidfile=/var/run/rarpd.pid
name="Reverse ARP Daemon"
required_files="/etc/ethers"
if [ -z "${RARPD_INTERFACE}" ]; then
if [ -z "${rarpd_interface}" ]; then
command_args="${command_args} -a"
else
command_args="${command_args} ${RARPD_INTERFACE}"
command_args="${command_args} ${rarpd_interface}"
fi
command_background="YES"
@@ -40,9 +41,9 @@ depend() {
need localmount
after bootmisc
if [ -z "${RARPD_INTERFACE}" ]; then
if [ -z "${rarpd_interface}" ]; then
need net
else
net net."${RARPD_INTERFACE}"
net net."${rarpd_interface}"
fi
}