mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
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.
53 lines
1.4 KiB
Bash
53 lines
1.4 KiB
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: ccxstream
|
|
# REQUIRE: DAEMON
|
|
|
|
# Define these ccxstream_* variables in one of these files:
|
|
# /etc/rc.conf
|
|
# /etc/rc.conf.local
|
|
# /etc/rc.conf.d/ccxstream
|
|
#
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE!
|
|
#
|
|
# The port will refuse to start unless ccxstream_flags is initalized,
|
|
# in addition to ccxstream_enable. For information on the arguments
|
|
# to ccxstream, look at %%PREFIX%%/share/doc/ccxstream/README (if you
|
|
# installed the port documentation by not specifying NOPORTDOCS) or the
|
|
# output of "ccxstream -h". At bare minimum, you'll want to add the
|
|
# "-u <user>" argument to specify the userid the server will run under
|
|
# (unless you WANT to run this code as root), and the "-r <directory>"
|
|
# argument to configure the directory root that the server will share
|
|
# from.
|
|
#
|
|
# Don't worry about the "-f" (background) and "-F <pidfile>" arguments;
|
|
# this script takes care of them for you.
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ccxstream"
|
|
rcvar=ccxstream_enable
|
|
|
|
command="%%PREFIX%%/sbin/ccxstream"
|
|
|
|
load_rc_config "$name"
|
|
: ${ccxstream_enable="NO"}
|
|
: ${ccxstream_flags="DEFAULT"}
|
|
|
|
pidfile=${ccxstream_pidfile="/var/run/${name}.pid"}
|
|
|
|
command_args="-f -F ${pidfile}"
|
|
|
|
ccxstream_precmd () {
|
|
if [ x"${ccxstream_flags}" = xDEFAULT ]; then
|
|
warn must set ccxstream_flags first, no acceptable defaults
|
|
return 1
|
|
fi
|
|
return 0
|
|
}
|
|
|
|
run_rc_command "$1"
|