mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
AUTODNSSEC -> AUTODNSSEC_ON (#863)
* AUTODNSSEC -> AUTODNSSEC_ON * Validate AutoDNSSEC values * AUTODNSSEC now generates a warning and does nothing.
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
D("foo.com","none",
|
||||
AUTODNSSEC
|
||||
D("nothing.com","none"
|
||||
);
|
||||
D("with.com","none",
|
||||
AUTODNSSEC_ON
|
||||
);
|
||||
D("without.com","none",
|
||||
AUTODNSSEC_OFF
|
||||
);
|
||||
|
@ -3,11 +3,24 @@
|
||||
"dns_providers": [],
|
||||
"domains": [
|
||||
{
|
||||
"name": "foo.com",
|
||||
"name": "nothing.com",
|
||||
"registrar": "none",
|
||||
"dnsProviders": {},
|
||||
"records":[],
|
||||
"auto_dnssec": true
|
||||
"records": []
|
||||
},
|
||||
{
|
||||
"name": "with.com",
|
||||
"registrar": "none",
|
||||
"dnsProviders": {},
|
||||
"records": [],
|
||||
"auto_dnssec": "on"
|
||||
},
|
||||
{
|
||||
"name": "without.com",
|
||||
"registrar": "none",
|
||||
"dnsProviders": {},
|
||||
"records": [],
|
||||
"auto_dnssec": "off"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Reference in New Issue
Block a user