mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-04-19 20:09:14 +03:00
INCEPTION-INCREMENT is not a valid option for soa_edit_api
INCEPTION-INCREMENT is not a valid option for soa_edit_api, see:
https://doc.powerdns.com/authoritative/domainmetadata.html#soa-edit-api
-> "These rules are the same as the SOA-EDIT-DNSUPDATE rules."
--> https://doc.powerdns.com/authoritative/dnsupdate.html#dnsupdate-soa-serial-updates
---> There is no "INCEPTION-INCREMENT" Setting.
Since 4.2 this is more strictly checked by PowerDNS:
636301b9f1 (diff-fcc782f1cdc22f79be390c5d65da9050)
Before this, it would simply use the DEFAULT option, now it logs an error and doesn't increase the Serial.
This commit is contained in:
parent
371eb41787
commit
de278c9ad7
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ $templates[] = array(
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$defaults['soa_edit'] = 'INCEPTION-INCREMENT';
|
$defaults['soa_edit'] = 'INCEPTION-INCREMENT';
|
||||||
$defaults['soa_edit_api'] = 'INCEPTION-INCREMENT';
|
$defaults['soa_edit_api'] = 'DEFAULT';
|
||||||
$defaults['defaulttype'] = 'Master'; # Choose between 'Native' or 'Master'
|
$defaults['defaulttype'] = 'Master'; # Choose between 'Native' or 'Master'
|
||||||
$defaults['ns'][0] = 'unconfigured.primaryns.'; # The value of the first NS-record
|
$defaults['ns'][0] = 'unconfigured.primaryns.'; # The value of the first NS-record
|
||||||
$defaults['ns'][1] = 'unconfigured.secondaryns.'; # The value of the second NS-record
|
$defaults['ns'][1] = 'unconfigured.secondaryns.'; # The value of the second NS-record
|
||||||
|
|
Loading…
Add table
Reference in a new issue