mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-05 11:35:01 +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.
62 lines
1.7 KiB
Bash
62 lines
1.7 KiB
Bash
#!/bin/sh
|
|
#
|
|
# tracd startup
|
|
#
|
|
# $FreeBSD$
|
|
|
|
# PROVIDE: tracd
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable or configure tracd:
|
|
# tracd_enable (bool): Set to "NO" by default.
|
|
# Set it to "YES" to enable tracd.
|
|
# tracd_listen (str): The host name or IP address to bind tracd to.
|
|
# By default tracd listens 0.0.0.0, i.e. all the
|
|
# available addresses on all interfaces.
|
|
# tracd_port (str): The port number to bind to, 80 by default.
|
|
# tracd_pidfile (str): When daemonizing, file to which to write pid
|
|
# if not to /var/run/tracd.pid.
|
|
# tracd_envdir (str): Directory of the project environments. Set to
|
|
# "/home/trac" by default.
|
|
# tracd_env (str): The project environment name while using single
|
|
# environment mode. The default is empty, meaning
|
|
# multiproject mode.
|
|
# tracd_args (str): Extra arguments passed to tracd startup
|
|
# command. Empty by default.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="tracd"
|
|
rcvar=tracd_enable
|
|
|
|
tracd_enable=${tracd_enable:-"NO"}
|
|
tracd_listen=${tracd_listen:-"0.0.0.0"}
|
|
tracd_port=${tracd_port:-"80"}
|
|
tracd_pidfile=${tracd_pidfile:-"/var/run/tracd.pid"}
|
|
tracd_envdir=${tracd_envdir:-"/home/trac"}
|
|
tracd_env=${tracd_env:-""}
|
|
tracd_args=${tracd_args:-""}
|
|
|
|
load_rc_config ${name}
|
|
|
|
command_args="--daemonize --hostname=${tracd_listen} --port=${tracd_port}"
|
|
command_args="${command_args} --pidfile=${tracd_pidfile} ${tracd_args}"
|
|
|
|
required_dirs=${tracd_envdir}
|
|
pidfile=${tracd_pidfile}
|
|
|
|
if [ -z "${tracd_env}" ]; then
|
|
_trac_env="--env-parent-dir ${tracd_envdir}"
|
|
else
|
|
_trac_env="${tracd_envdir}/${tracd_env}"
|
|
command_args="${command_args} --single-env"
|
|
fi
|
|
|
|
command_args="%%PREFIX%%/bin/tracd ${command_args} ${_trac_env}"
|
|
command="%%PYTHON_CMD%%"
|
|
|
|
run_rc_command $1
|