We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9563c5a commit b4f140fCopy full SHA for b4f140f
Corefile
@@ -7,7 +7,7 @@
7
password {$OMADA_PASSWORD}
8
refresh_minutes 1
9
ignore_startup_errors {$OMADA_IGNORE_STARTUP_ERRORS}
10
- fallthrough ${FALLTHROUGH_ZONES}
+ fallthrough {$FALLTHROUGH_ZONES}
11
}
12
forward . {$UPSTREAM_DNS}
13
setup.go
@@ -78,9 +78,9 @@ func (o *Omada) controllerInit(ctx context.Context) error {
78
79
log.Info("starting initial omada setup...")
80
if o.config.fallthrough_zones == nil {
81
- log.Debug("fallthrough disabled")
+ log.Info("fallthrough disabled")
82
} else {
83
- log.Debug("fallthrough zones: ", o.Fall.Zones)
+ log.Info("fallthrough zones: ", o.Fall.Zones)
84
85
86
const retrySeconds = 15
0 commit comments