diff --git a/bind.spec b/bind.spec index c8d5212..3cc6589 100644 --- a/bind.spec +++ b/bind.spec @@ -53,7 +53,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serv Name: bind License: MPLv2.0 Version: 9.16.25 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 32 Url: https://www.isc.org/downloads/bind/ # @@ -1127,6 +1127,9 @@ fi; %endif %changelog +* Tue Jan 25 2022 Petr Menšík - 32:9.16.25-2 +- Replace master with primary in configuration + * Fri Jan 21 2022 Petr Menšík - 32:9.16.25-1 - Update to 9.16.25 (#2042504) diff --git a/named.conf.sample b/named.conf.sample index d2ce6dd..0f3ae98 100644 --- a/named.conf.sample +++ b/named.conf.sample @@ -159,17 +159,17 @@ view "internal" */ zone "my.internal.zone" { - type master; + type primary; file "my.internal.zone.db"; }; zone "my.slave.internal.zone" { - type slave; + type secondary; file "slaves/my.slave.internal.zone.db"; masters { /* put master nameserver IPs here */ 127.0.0.1; } ; // put slave zones in the slaves/ directory so named can update them }; zone "my.ddns.internal.zone" { - type master; + type primary; allow-update { key ddns_key; }; file "dynamic/my.ddns.internal.zone.db"; // put dynamically updateable zones in the slaves/ directory so named can update them @@ -202,7 +202,7 @@ view "external" // contain entries for just your web and mail servers: zone "my.external.zone" { - type master; + type primary; file "my.external.zone.db"; }; }; diff --git a/named.rfc1912.zones b/named.rfc1912.zones index fa8caf5..2c3c2a8 100644 --- a/named.rfc1912.zones +++ b/named.rfc1912.zones @@ -15,31 +15,31 @@ // zone "localhost.localdomain" IN { - type master; + type primary; file "named.localhost"; allow-update { none; }; }; zone "localhost" IN { - type master; + type primary; file "named.localhost"; allow-update { none; }; }; zone "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN { - type master; + type primary; file "named.loopback"; allow-update { none; }; }; zone "1.0.0.127.in-addr.arpa" IN { - type master; + type primary; file "named.loopback"; allow-update { none; }; }; zone "0.in-addr.arpa" IN { - type master; + type primary; file "named.empty"; allow-update { none; }; };