Merge pull request #1003 from stangri/luci-app-vpnbypass

luci-app-vpnbypass: makefile fix & controller fix
This commit is contained in:
Hannu Nyman 2017-02-12 10:19:00 +02:00 committed by GitHub
commit 0bfe064cc3
2 changed files with 1 additions and 4 deletions

View file

@ -3,8 +3,6 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_VERSION:=1.0.0
PKG_RELEASE:=5
PKG_LICENSE:=GPL-3.0+ PKG_LICENSE:=GPL-3.0+
PKG_MAINTAINER:=Stan Grishin <stangri@melmac.net> PKG_MAINTAINER:=Stan Grishin <stangri@melmac.net>

View file

@ -3,6 +3,5 @@ function index()
if not nixio.fs.access("/etc/config/vpnbypass") then if not nixio.fs.access("/etc/config/vpnbypass") then
return return
end end
entry({"admin", "services", "vpnbypass"}, cbi("vpnbypass"), translate("VPN Bypass"), 1) entry({"admin", "services", "vpnbypass"}, cbi("vpnbypass"), _("VPN Bypass"))
end end