Merge pull request #1818 from dibdot/lxc_fix
[project/luci.git] / applications / luci-app-statistics / luasrc / model / cbi / luci_statistics / entropy.lua
1 -- Copyright 2015 Hannu Nyman <hannu.nyman@iki.fi>
2 -- Licensed to the public under the Apache License 2.0.
3
4 m = Map("luci_statistics",
5         translate("Entropy Plugin Configuration"),
6         translate("The entropy plugin collects statistics about the available entropy."))
7
8 s = m:section( NamedSection, "collectd_entropy", "luci_statistics" )
9
10 enable = s:option( Flag, "enable", translate("Enable this plugin") )
11 enable.default = 0
12
13 return m
14