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.
33 lines
578 B
Bash
33 lines
578 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
# PROVIDE: tits
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
# Define these tits_* variables in one of these files:
|
|
# /etc/rc.conf
|
|
# /etc/rc.conf.local
|
|
# /etc/rc.conf.d/tits
|
|
#
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
|
#
|
|
tits_enable="${tits_enable-NO}"
|
|
#tits_pidfile="/var/run/tits.pid"
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="tits"
|
|
rcvar=tits_enable
|
|
command="%%PREFIX%%/sbin/tits"
|
|
|
|
load_rc_config $name
|
|
|
|
: ${tits_config="%%PREFIX%%/etc/tits.conf"}
|
|
: ${tits_flags="${tits_config}"}
|
|
|
|
#pidfile="${tits_pidfile}"
|
|
required_files="${tits_config}"
|
|
|
|
run_rc_command "$1"
|