Merge pull request #1537 from kiwichrish/master

Add explicit notify type to Bind DNS zone config options
This commit is contained in:
Jamie Cameron
2021-10-12 17:55:04 -07:00
committed by GitHub
3 changed files with 3 additions and 0 deletions

View File

@@ -133,6 +133,7 @@ print &ignore_warn_fail($text{'zonedef_cresponse'}, 'response',
$check{'response'});
print &choice_input($text{'zonedef_notify'}, "notify", $mems,
$text{'yes'}, "yes", $text{'no'}, "no",
$text{'explicit'}, "explicit",
$text{'default'}, undef);
print &ui_table_end();

View File

@@ -30,6 +30,7 @@ print &choice_input($text{'master_check'}, "check-names", $zconf,
$text{'ignore'}, "ignore", $text{'default'}, undef);
print &choice_input($text{'master_notify'}, "notify", $zconf,
$text{'yes'}, "yes", $text{'no'}, "no",
$text{'explicit'}, "explicit",
$text{'default'}, undef);
print &address_input($text{'master_update'}, "allow-update", $zconf);

View File

@@ -49,6 +49,7 @@ print &choice_input($text{'slave_check'}, "check-names", $zconf,
$text{'ignore'}, "ignore", $text{'default'}, undef);
print &choice_input($text{'slave_notify'}, "notify", $zconf,
$text{'yes'}, "yes", $text{'no'}, "no",
$text{'explicit'}, "explicit",
$text{'default'}, undef);
print &addr_match_input($text{'slave_update'}, "allow-update", $zconf);