summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-rp-pppoe-server/luasrc
diff options
context:
space:
mode:
authorDaniel F. Dickinson <cshored@thecshore.com>2019-01-05 12:20:09 -0500
committerDaniel F. Dickinson <cshored@thecshore.com>2019-01-05 12:29:32 -0500
commit96cf73a599b24e569657eb1fdda25e2596c4bfbd (patch)
tree38429f94959c4056471e5f6fdc1cfbddef637f54 /applications/luci-app-rp-pppoe-server/luasrc
parent66c2bbc2790813a7889c0dd329131e5012fc83dd (diff)
luci-app-rp-pppoe-server: Add ability to create uci sections
Currently if no non-commented uci sections exist in the config then it's impossible to create a config from LuCI. Fix that, which also allows what the initscript does, which is multiple instances. While we're at it create the translation template. Closes: #2431 Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
Diffstat (limited to 'applications/luci-app-rp-pppoe-server/luasrc')
-rw-r--r--applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua b/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua
index ef15ed612..e967ce628 100644
--- a/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua
+++ b/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua
@@ -9,7 +9,7 @@ m = Map("pppoe", translate("Roaring Penguin PPPoE Server"),
translate("PPPoE Server Configuration"))
s = m:section(TypedSection, "pppoe_server", translate("Server Configuration"))
-s.addremove = false
+s.addremove = true
s.anonymous = true
o = s:option(Value, "interface", translate("Interface"), translate("Interface on which to listen."))