mwan3-luci: update to 1.3-3

corrected name of last_resort option from "main" to "default"
added blackhole option to policy selection on rule configuration

Signed-off-by: Aedan Renner <chipdankly@gmail.com>
This commit is contained in:
Aedan Renner 2014-09-30 08:50:31 -07:00 committed by Etienne CHAMPETIER
parent 6c1e1705b1
commit b128beaf2a
4 changed files with 10 additions and 9 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-mwan3
PKG_VERSION:=1.3
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_MAINTAINER:=Aedan Renner <chipdankly@gmail.com>
PKG_LICENSE:=GPLv2

View File

@ -72,12 +72,12 @@ last_resort = mwan_policy:option(DummyValue, "last_resort", translate("Last reso
last_resort.rawhtml = true
function last_resort.cfgvalue(self, s)
local str = self.map:get(s, "last_resort")
if str == "unreachable" or str == "" or str == null then
return "unreachable (reject)"
elseif str == "blackhole" then
if str == "blackhole" then
return "blackhole (drop)"
elseif str == "main" then
return "main (use main routing table)"
elseif str == "default" then
return "default (use main routing table)"
else
return "unreachable (reject)"
end
end

View File

@ -50,7 +50,7 @@ last_resort = mwan_policy:option(ListValue, "last_resort", translate("Last resor
last_resort.default = "unreachable"
last_resort:value("unreachable", translate("unreachable (reject)"))
last_resort:value("blackhole", translate("blackhole (drop)"))
last_resort:value("main", translate("main (use main routing table)"))
last_resort:value("default", translate("default (use main routing table)"))
-- ------ currently configured members ------ --

View File

@ -83,8 +83,9 @@ proto = mwan_rule:option(Value, "proto", translate("Protocol"),
use_policy = mwan_rule:option(Value, "use_policy", translate("Policy assigned"))
cbi_add_policy(use_policy)
use_policy:value("unreachable")
use_policy:value("default")
use_policy:value("unreachable", translate("unreachable (reject)"))
use_policy:value("blackhole", translate("blackhole (drop)"))
use_policy:value("default", translate("default (use main routing table)"))
-- ------ currently configured policies ------ --