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.
37 lines
859 B
Bash
37 lines
859 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: shairport
|
|
# REQUIRE: LOGIN avahi_daemon
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to
|
|
# enable shairport:
|
|
#
|
|
# shairport_enable (bool): Set it to "YES" to enable shaiport.
|
|
# Default is "NO".
|
|
# shairport_flags (flags): Set extra flags here.
|
|
# shairport_flags="-a name" to change Airport name
|
|
# Default is empty "".
|
|
# shairport_user (user): Set user to run shairport.
|
|
# Default is "nobody".
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="shairport"
|
|
rcvar=shairport_enable
|
|
|
|
load_rc_config ${name}
|
|
|
|
: ${shairport_enable="NO"}
|
|
: ${shairport_user="nobody"}
|
|
|
|
command="%%PREFIX%%/bin/${name}.pl"
|
|
pidfile="/var/run/${name}/${name}.pid"
|
|
command_interpreter="%%PERL%%"
|
|
|
|
command_args="-d -w ${pidfile}"
|
|
start_precmd="install -d -o ${shairport_user} -g wheel -m 755 /var/run/${name}"
|
|
|
|
run_rc_command "$1"
|