Merge pull request #2791 from TDT-AG/pr/20190626-luci-proto-3g

luci-proto-3g: rename maxwait to delay option
This commit is contained in:
Florian Eckert 2019-07-03 08:59:35 +02:00 committed by GitHub
commit f56a6df49c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@
local map, section, net = ... local map, section, net = ...
local device, apn, service, pincode, username, password, dialnumber local device, apn, service, pincode, username, password, dialnumber
local ipv6, maxwait, defaultroute, metric, peerdns, dns, local ipv6, delay, defaultroute, metric, peerdns, dns,
keepalive_failure, keepalive_interval, demand keepalive_failure, keepalive_interval, demand
@ -58,12 +58,12 @@ if luci.model.network:has_ipv6() then
end end
maxwait = section:taboption("advanced", Value, "maxwait", delay = section:taboption("advanced", Value, "delay",
translate("Modem init timeout"), translate("Modem init timeout"),
translate("Maximum amount of seconds to wait for the modem to become ready")) translate("Maximum amount of seconds to wait for the modem to become ready"))
maxwait.placeholder = "20" delay.placeholder = "10"
maxwait.datatype = "min(1)" delay.datatype = "min(1)"
defaultroute = section:taboption("advanced", Flag, "defaultroute", defaultroute = section:taboption("advanced", Flag, "defaultroute",