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.
55 lines
1.5 KiB
Bash
55 lines
1.5 KiB
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: iodined
|
|
# REQUIRE: LOGIN
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# iodined_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable iodined.
|
|
# iodined_password (string): Not set by default, mandatory.
|
|
# Password used for client authentication.
|
|
# Note that the password will be visible to ps(1) et al.
|
|
# iodined_domain (string): Not set by default, mandatory.
|
|
# Tunnel domain delegated to iodined, e.g. "t.example.net".
|
|
# iodined_addr (string): Set to 172.16.0.1 by default.
|
|
# IPv4 address used for the daemon end of the tunnel.
|
|
# iodined_flags (string): Set to "-u _iodined -t /var/empty" by default.
|
|
# Additional flags to iodined, see manual page.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="iodined"
|
|
rcvar=iodined_enable
|
|
|
|
command=%%PREFIX%%/sbin/${name}
|
|
|
|
load_rc_config $name
|
|
|
|
: ${iodined_enable="NO"}
|
|
: ${iodined_addr="172.16.0.1"}
|
|
: ${iodined_flags="-u _iodined -t /var/empty"}
|
|
|
|
command_args="-P $iodined_password $iodined_addr $iodined_domain"
|
|
|
|
start_precmd="iodined_precmd"
|
|
|
|
iodined_precmd()
|
|
{
|
|
if checkyesno iodined_enable; then
|
|
if [ -z "$iodined_password" ]; then
|
|
err 1 'Must set $iodined_password in rc.conf or rc.conf.local'
|
|
fi
|
|
if [ -z "$iodined_domain" ]; then
|
|
err 1 'Must set $iodined_domain in rc.conf or rc.conf.local'
|
|
fi
|
|
if [ -z "$iodined_addr" ]; then
|
|
err 1 'Must set $iodined_addr in rc.conf or rc.conf.local'
|
|
fi
|
|
fi
|
|
}
|
|
|
|
run_rc_command "$1"
|