From: Evan Hunt Date: Thu, 26 Aug 2021 05:58:05 +0000 (-0700) Subject: switch to primary/secondary in config.c X-Git-Tag: v9.17.18~10^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae8cfa4683b2f722524a22c8e34076aa60ffb5e1;p=thirdparty%2Fbind9.git switch to primary/secondary in config.c some of the built-in configuration was still using outdated terms. --- diff --git a/bin/named/config.c b/bin/named/config.c index 39a1c04ba29..213c45cb33e 100644 --- a/bin/named/config.c +++ b/bin/named/config.c @@ -148,9 +148,9 @@ options {\n\ auth-nxdomain false;\n\ check-dup-records warn;\n\ check-mx warn;\n\ - check-names master fail;\n\ + check-names primary fail;\n\ check-names response ignore;\n\ - check-names slave warn;\n\ + check-names secondary warn;\n\ check-spf warn;\n\ clients-per-query 10;\n\ dnssec-accept-expired no;\n\ @@ -280,22 +280,22 @@ view \"_bind\" chaos {\n\ };\n\ \n\ zone \"version.bind\" chaos {\n\ - type master;\n\ + type primary;\n\ database \"_builtin version\";\n\ };\n\ \n\ zone \"hostname.bind\" chaos {\n\ - type master;\n\ + type primary;\n\ database \"_builtin hostname\";\n\ };\n\ \n\ zone \"authors.bind\" chaos {\n\ - type master;\n\ + type primary;\n\ database \"_builtin authors\";\n\ };\n\ \n\ zone \"id.server\" chaos {\n\ - type master;\n\ + type primary;\n\ database \"_builtin id\";\n\ };\n\ };\n\