mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +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.
33 lines
641 B
Bash
33 lines
641 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: dnsproxy
|
|
# REQUIRE: NETWORKING SERVERS
|
|
# BEFORE: DAEMON
|
|
# KEYWORD: shutdown
|
|
|
|
#
|
|
# Define these dnsproxy_* variables in one of these files:
|
|
# /etc/rc.conf
|
|
# /etc/rc.conf.local
|
|
#
|
|
# dnsproxy_enable="YES" # Run the dnsproxy(1) daemon (YES/NO).
|
|
# dnsproxy_flags="" # Extra flags for dnsproxy(1) (if enabled).
|
|
#
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
|
#
|
|
dnsproxy_enable=${dnsproxy_enable:-"NO"}
|
|
command_args=${dnsproxy_flags:-"-c %%ETCDIR%%/dnsproxy.conf -d"}
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="dnsproxy"
|
|
rcvar=dnsproxy_enable
|
|
|
|
command="%%PREFIX%%/sbin/dnsproxy"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|