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.
49 lines
1.2 KiB
Bash
49 lines
1.2 KiB
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: varnishncsa
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
|
|
#
|
|
# Add the following line to /etc/rc.conf to enable varnishncsa:
|
|
#
|
|
# varnishncsa_enable="YES"
|
|
#
|
|
# Configuration variables and their default values:
|
|
#
|
|
# varnishncsa_pidfile - full path to the PID file.
|
|
# default: "/var/run/varnishncsa.pid"
|
|
#
|
|
# varnishncsa_file - full path to the log file.
|
|
# default: "/var/log/varnishncsa.log"
|
|
#
|
|
# varnishncsa_flags - command line arguments.
|
|
# default: "-D -P ${varnishncsa_pidfile} -a -c -w ${varnishncsa_file}"
|
|
#
|
|
# Add the following line to /etc/newsyslog.conf to rotate the log file
|
|
# once a day:
|
|
#
|
|
# /var/log/varnishncsa.log 640 7 * @T00 JB /var/run/varnishncsa.pid
|
|
#
|
|
# See varnishncsa(1) for a detailed overview of command-line options.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="varnishncsa"
|
|
rcvar=varnishncsa_enable
|
|
|
|
command="%%PREFIX%%/bin/${name}"
|
|
|
|
# read configuration and set defaults
|
|
load_rc_config ${name}
|
|
: ${varnishncsa_enable:="NO"}
|
|
: ${varnishncsa_pidfile:="/var/run/${name}.pid"}
|
|
: ${varnishncsa_file:="/var/log/${name}.log"}
|
|
: ${varnishncsa_flags:="-P ${varnishncsa_pidfile} -D -a -c -w ${varnishncsa_file}"}
|
|
|
|
pidfile=${varnishncsa_pidfile}
|
|
run_rc_command "$1"
|