Skip to content

Commit 3e6c027

Browse files
committed
stub-prime defaults to no if unset
Changed stub-prime default to no if unset. When set to yes, the unbound server requires that the ns records are resolvable before the stub zones will work.
1 parent 933871a commit 3e6c027

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controllers/designateunbound_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ func stubZoneDefaults(values map[string]string) map[string]string {
524524
values = make(map[string]string)
525525
}
526526
if _, ok := values["stub-prime"]; !ok {
527-
values["stub-prime"] = "yes"
527+
values["stub-prime"] = "no"
528528
}
529529
if _, ok := values["stub-first"]; !ok {
530530
values["stub-first"] = "yes"

0 commit comments

Comments
 (0)