mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +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.
35 lines
718 B
Bash
35 lines
718 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: inadyn
|
|
# REQUIRE: NETWORKING
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# inadyn_enable="YES"
|
|
#
|
|
# Reccomend using the inadyn.conf over inadyn_flags. However, inadyn_flags will
|
|
# take priority the configuration file by upstream's design. Any command
|
|
# line arguement (and thus inadyn_flags) will cause inadyn.conf to be ignored
|
|
# completely.
|
|
# See inadyn(8) for inadyn_flags and inadyn.conf syntax.
|
|
#
|
|
# Don't forget to include --background in either method!
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="inadyn"
|
|
rcvar=inadyn_enable
|
|
|
|
command=%%PREFIX%%/bin/${name}
|
|
|
|
load_rc_config $name
|
|
|
|
: ${inadyn_enable="NO"}
|
|
|
|
run_rc_command "$1"
|