Globally reduce copyright headers
[project/luci.git] / applications / luci-app-coovachilli / luasrc / model / cbi / coovachilli.lua
1 -- Copyright 2008 Steven Barth <steven@midlink.org>
2 -- Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
3 -- Licensed to the public under the Apache License 2.0.
4
5 m = Map("coovachilli")
6
7 -- general
8 s = m:section(TypedSection, "general")
9 s.anonymous = true
10
11 s:option( Flag, "debug" )
12 s:option( Value, "interval" )
13 s:option( Value, "pidfile" ).optional = true
14 s:option( Value, "statedir" ).optional = true
15 s:option( Value, "cmdsock" ).optional = true
16 s:option( Value, "logfacility" ).optional = true
17
18
19 return m