luci-app-vpnbypass: remove explicit libuci requirement
There is no direct user of the libuci-lua api, just some commented out code. Rewrite the commented code to use the Map's uci cursor and remove the explicit require. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
8c636c87ee
commit
75ac400168
1 changed files with 1 additions and 3 deletions
|
@ -1,7 +1,5 @@
|
|||
readmeURL = "https://github.com/openwrt/packages/blob/master/net/vpnbypass/files/README.md"
|
||||
|
||||
uci = require "uci"
|
||||
|
||||
m = Map("vpnbypass", translate("VPN Bypass Settings"))
|
||||
s = m:section(NamedSection, "config", "vpnbypass")
|
||||
|
||||
|
@ -32,7 +30,7 @@ p2.optional = false
|
|||
-- Local Subnets
|
||||
r1 = s:option(DynamicList, "localsubnet", translate("Local IP Addresses to Bypass"), translate("Local IP addresses or subnets with direct internet access (outside of the VPN tunnel)"))
|
||||
r1.datatype = "ip4addr"
|
||||
-- r1.placeholder = luci.ip.new(uci.cursor():get("network", "lan", "ipaddr") .. "/" .. uci.cursor():get("network", "lan", "netmask"))
|
||||
-- r1.placeholder = luci.ip.new(m.uci:get("network", "lan", "ipaddr"), m.uci:get("network", "lan", "netmask"))
|
||||
r1.addremove = false
|
||||
r1.optional = false
|
||||
|
||||
|
|
Loading…
Reference in a new issue