mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
IGNORE_NAME: Should work at domain apex (#1118)
* IGNORE_NAME: Add test at apex * Fix IGNORE_NAME at apex * Add comments and documentation * Add a flag to disable IGNORE_NAME safety checks
This commit is contained in:
@ -516,6 +516,15 @@ function IGNORE_NAME(name) {
|
||||
};
|
||||
}
|
||||
|
||||
var IGNORE_NAME_DISABLE_SAFETY_CHECK = {
|
||||
ignore_name_disable_safety_check: "true"
|
||||
// This disables a safety check intended to prevent:
|
||||
// 1. Two owners toggling a record between two settings.
|
||||
// 2. The other owner wiping all records at this label, which won't
|
||||
// be noticed until the next time dnscontrol is run.
|
||||
// See https://github.com/StackExchange/dnscontrol/issues/1106
|
||||
};
|
||||
|
||||
// IGNORE_TARGET(target)
|
||||
function IGNORE_TARGET(target, rType) {
|
||||
return function(d) {
|
||||
|
Reference in New Issue
Block a user