Skip to content

Commit

Permalink
Use current settings names rather than the ones deprecated in 4.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
miodvallat committed Dec 11, 2024
1 parent 963f95d commit d79afa5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/backends/bind.rst
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ If :ref:`setting-bind-check-interval` is specified as
zero, no checks will be performed until the ``pdns_control reload`` is
given.

Please note that also the :ref:`setting-slave-cycle-interval` setting
Please note that also the :ref:`setting-xfr-cycle-interval` setting
controls how often a master would notify a slave about changes.
Especially in 'hidden master' configurations, where servers usually
don't receive regular queries, you may want to lower that setting to a
Expand Down
2 changes: 1 addition & 1 deletion docs/backends/tinydns.rst
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ domains or updated serial numbers. The CDB datafile requires us to do a
full scan of all the records. When running with verbose logging, this
could lead to a lot of output. The scanning of the CDB file may also
take a while on systems with large files. The scan happens at an
interval set by the :ref:`setting-slave-cycle-interval`. It
interval set by the :ref:`setting-xfr-cycle-interval`. It
might be useful to raise this value to limit the amount of scans on the
CDB file.

Expand Down
2 changes: 1 addition & 1 deletion docs/domainmetadata.rst
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ SLAVE-RENOTIFY

If set to 1, will make PowerDNS renotify the slaves after an AXFR is received from a master.
Any other value means that no renotifies are done. If not set at all, action will depend on
the :ref:`setting-slave-renotify` setting.
the :ref:`setting-secondary-do-renotify` setting.

.. _metadata-soa-edit:

Expand Down
6 changes: 3 additions & 3 deletions docs/migration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Using AXFR to a Slave-Capable Backend
The easiest way to migrate all your zones from your old infrastructure
to PowerDNS is to add all your domains as a slave domain with your
current master as the master, wait for the zones to be transferred and
change the zones to master. Make sure :ref:`setting-slave` is set to "yes"
change the zones to master. Make sure :ref:`setting-secondary` is set to "yes"
in your pdns.conf.

To A Generic SQL Backend
Expand All @@ -40,7 +40,7 @@ domain in the database:
UPDATE domains set type='MASTER' where type='SLAVE';
And set :ref:`setting-master` to "yes" in your pdns.conf
And set :ref:`setting-primary` to "yes" in your pdns.conf
and restart PowerDNS.

Or, if you want to use :ref:`native <native-operation>`:
Expand Down Expand Up @@ -76,7 +76,7 @@ transferred. Now you can change the zone type to master:
file "/var/lib/powerdns/zones/example.net.zone";
};

Don't forget to enable :ref:`setting-master` in your
Don't forget to enable :ref:`setting-primary` in your
pdns.conf and restart, or if this setting was already set, use
``pdns_control rediscover`` to load these zones as master zones.

Expand Down

0 comments on commit d79afa5

Please sign in to comment.