diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2013-11-23 03:05:01 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2013-11-23 03:05:01 +0800 |
commit | 61f13e9f341e7473ec4c8059b0999266eb6c2dc6 (patch) | |
tree | 86df1960759d9994efbba77606ac93e124b8b6a3 /dns/bind98 | |
parent | 4cf9003fd4a076a626b6e2b469bf5ac9ec7e7562 (diff) | |
download | freebsd-ports-graphics-61f13e9f341e7473ec4c8059b0999266eb6c2dc6.tar.gz freebsd-ports-graphics-61f13e9f341e7473ec4c8059b0999266eb6c2dc6.tar.zst freebsd-ports-graphics-61f13e9f341e7473ec4c8059b0999266eb6c2dc6.zip |
- Respect BIND_DESTETC and PREFIX
Submitted by: sunpoet (myself)
Approved by: erwin (maintainer)
Diffstat (limited to 'dns/bind98')
-rw-r--r-- | dns/bind98/files/named | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dns/bind98/files/named b/dns/bind98/files/named index 777ec168857..cc267553ad1 100644 --- a/dns/bind98/files/named +++ b/dns/bind98/files/named @@ -20,8 +20,8 @@ reload_cmd="named_reload" stop_cmd="named_stop" named_enable=${named_enable:-"NO"} # Run named, the DNS server (or NO). -named_program=${named_program:-"/usr/local/sbin/named"} # Path to named, if you want a different one. -named_conf=${named_conf:-"/usr/local/etc/namedb/named.conf"} # Path to the configuration file +named_program=${named_program:-"%%PREFIX%%/sbin/named"} # Path to named, if you want a different one. +named_conf=${named_conf:-"%%BIND_DESTETC%%/named.conf"} # Path to the configuration file named_flags=${named_flags:-""} # Use this for flags OTHER than -u and -c named_uid=${named_uid:-"bind"} # User to run named as named_wait=${named_wait:-"NO"} # Wait for working name service before exiting |