Merge pull request #1818 from dibdot/lxc_fix
[project/luci.git] / applications / luci-app-statistics / luasrc / model / cbi / luci_statistics / splash_leases.lua
1 -- Copyright 2013 Freifunk Augsburg / Michael Wendland <michael@michiwend.com>
2 -- Licensed to the public under the Apache License 2.0.
3
4 m = Map("luci_statistics",
5         translate("Splash Leases Plugin Configuration"),
6         translate("The splash leases plugin uses libuci to collect statistics about splash leases."))
7
8 s = m:section( NamedSection, "collectd_splash_leases", "luci_statistics" )
9
10 enable = s:option( Flag, "enable", translate("Enable this plugin") )
11 enable.default = 1
12
13 return m
14