mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
f4478fd6fb
pdnsd_flags can be safely overriden by user without worrying about "-d". Approved by: maintainer
17 lines
246 B
Bash
17 lines
246 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: pdnsd
|
|
# REQUIRE: netif
|
|
# BEFORE: LOGIN
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name="pdnsd"
|
|
rcvar=${name}_enable
|
|
command="%%PREFIX%%/sbin/pdnsd"
|
|
command_args="-d"
|
|
required_files="%%PREFIX%%/etc/pdnsd.conf"
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|