luci-proto-ipv6: correct aiccu options defaults
- requiretls default set to disabled - corrected syntax errors in default values of Flag options for nat, verbose and requiretls.
This commit is contained in:
parent
ae8e971eef
commit
1c054af0d7
1 changed files with 3 additions and 3 deletions
|
@ -69,21 +69,21 @@ nat = section:taboption("general", Flag, "nat",
|
||||||
translate("Behind NAT"),
|
translate("Behind NAT"),
|
||||||
translate("The tunnel end-point is behind NAT, defaults to disabled and only applies to AYIYA"))
|
translate("The tunnel end-point is behind NAT, defaults to disabled and only applies to AYIYA"))
|
||||||
nat.optional = true
|
nat.optional = true
|
||||||
nat.default = disabled
|
nat.default = nat.disabled
|
||||||
|
|
||||||
|
|
||||||
requiretls = section:taboption("general", Flag, "requiretls",
|
requiretls = section:taboption("general", Flag, "requiretls",
|
||||||
translate("Require TLS"),
|
translate("Require TLS"),
|
||||||
translate("Connection to server fails when TLS cannot be used"))
|
translate("Connection to server fails when TLS cannot be used"))
|
||||||
requiretls.optional = true
|
requiretls.optional = true
|
||||||
requiretls.default = enabled
|
requiretls.default = requiretls.disabled
|
||||||
|
|
||||||
|
|
||||||
verbose = section:taboption("advanced", Flag, "verbose",
|
verbose = section:taboption("advanced", Flag, "verbose",
|
||||||
translate("Verbose"),
|
translate("Verbose"),
|
||||||
translate("Verbose logging by aiccu daemon"))
|
translate("Verbose logging by aiccu daemon"))
|
||||||
verbose.optional = true
|
verbose.optional = true
|
||||||
verbose.default = disabled
|
verbose.default = verbose.disabled
|
||||||
|
|
||||||
|
|
||||||
ntpsynctimeout = section:taboption("advanced", Value, "ntpsynctimeout",
|
ntpsynctimeout = section:taboption("advanced", Value, "ntpsynctimeout",
|
||||||
|
|
Loading…
Reference in a new issue