openvpn.lua 500 B

1234567891011
  1. -- Copyright 2008 Steven Barth <steven@midlink.org>
  2. -- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
  3. -- Licensed to the public under the Apache License 2.0.
  4. module("luci.controller.openvpn", package.seeall)
  5. function index()
  6. entry( {"admin", "services", "openvpn"}, cbi("openvpn"), _("OpenVPN") )
  7. entry( {"admin", "services", "openvpn", "basic"}, cbi("openvpn-basic"), nil ).leaf = true
  8. entry( {"admin", "services", "openvpn", "advanced"}, cbi("openvpn-advanced"), nil ).leaf = true
  9. end