Lines Matching full:named
47 +; Instead, copy it, edit named.conf, and use that copy.
140 diff -urN bind-9.3.1.orig/conf/named.conf bind-9.3.1/conf/named.conf
141 --- bind-9.3.1.orig/conf/named.conf 1970-01-01 01:00:00.000000000 +0100
142 +++ bind-9.3.1/conf/named.conf 2005-07-10 22:33:46.000000000 +0200
144 +// This is the primary configuration file for the BIND DNS server named.
146 +// If you are just adding zones, please do that in /etc/bind/named.conf.local
148 +include "/etc/bind/named.conf.options";
192 +include "/etc/bind/named.conf.local";
193 diff -urN bind-9.3.1.orig/conf/named.conf.local bind-9.3.1/conf/named.conf.local
194 --- bind-9.3.1.orig/conf/named.conf.local 1970-01-01 01:00:00.000000000 +0100
195 +++ bind-9.3.1/conf/named.conf.local 2005-07-10 22:14:06.000000000 +0200
205 diff -urN bind-9.3.1.orig/conf/named.conf.options bind-9.3.1/conf/named.conf.options
206 --- bind-9.3.1.orig/conf/named.conf.options 1970-01-01 01:00:00.000000000 +0100
207 +++ bind-9.3.1/conf/named.conf.options 2005-07-10 22:14:06.000000000 +0200
265 +# for a chrooted server: "-u bind -t /var/lib/named"
275 + echo -n "Starting domain name service: named"
282 + if [ -f /var/run/named/named.pid ]; then
283 + ps `cat /var/run/named/named.pid` > /dev/null && exit 1
287 + mkdir -p /var/run/named
289 + chmod 775 /var/run/named
290 + chown root:bind /var/run/named >/dev/null 2>&1 || true
292 + if [ ! -x /usr/sbin/named ]; then
293 + echo "named binary missing - not starting"
296 + if start-stop-daemon --start --quiet --exec /usr/sbin/named \
297 + --pidfile /var/run/named/named.pid -- $OPTIONS; then
306 + echo -n "Stopping domain name service: named"