diff options
author | Jo-Philipp Wich <jo@mein.io> | 2018-09-20 12:41:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-20 12:41:13 +0200 |
commit | f0512e5c38a83397dc7b14f007d1d379ba93266e (patch) | |
tree | a85a08bc5ef1ed08060c056ec5d50bb26b115606 /applications/luci-app-snmpd/luasrc/controller/snmpd.lua | |
parent | be24b7b480d751882f7ef564acf5c370cfc00efa (diff) | |
parent | 318e4557553ceacbbb86fb575835f33a647597fb (diff) |
Merge pull request #2168 from remakeelectric/app-snmpd
luci-app-snmpd: Basic net-snmpd config options
Diffstat (limited to 'applications/luci-app-snmpd/luasrc/controller/snmpd.lua')
-rw-r--r-- | applications/luci-app-snmpd/luasrc/controller/snmpd.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/applications/luci-app-snmpd/luasrc/controller/snmpd.lua b/applications/luci-app-snmpd/luasrc/controller/snmpd.lua new file mode 100644 index 0000000000..71020747f0 --- /dev/null +++ b/applications/luci-app-snmpd/luasrc/controller/snmpd.lua @@ -0,0 +1,5 @@ +module("luci.controller.snmpd", package.seeall) + +function index() + entry({"admin", "services", "snmpd"}, cbi("snmpd"), "SNMPD") +end |