2008-12-21 10:24:54 +00:00
|
|
|
#!/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!
|
|
|
|
#
|
|
|
|
|
2010-03-27 00:15:24 +00:00
|
|
|
. /etc/rc.subr
|
2008-12-21 10:24:54 +00:00
|
|
|
|
|
|
|
name="inadyn"
|
2012-01-14 08:57:23 +00:00
|
|
|
rcvar=inadyn_enable
|
2008-12-21 10:24:54 +00:00
|
|
|
|
|
|
|
command=%%PREFIX%%/bin/${name}
|
|
|
|
|
|
|
|
load_rc_config $name
|
|
|
|
|
|
|
|
: ${inadyn_enable="NO"}
|
|
|
|
|
|
|
|
run_rc_command "$1"
|