blob: 105a80e28d8add47dcfd86daa5e1b3d0bf5e00f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- Copyright 2015 Daniel Dickinson <openwrt@daniel.thecshore.com>
-- Licensed to the public under the Apache License 2.0.
module("luci.controller.rp-pppoe-server", package.seeall)
function index()
if not nixio.fs.access("/etc/config/pppoe") then
return
end
entry({"admin", "services", "rp-pppoe-server"}, cbi("rp-pppoe-server"), _("RP PPPoE Server"))
end
|