2015-01-16 22:38:38 +00:00
|
|
|
-- Copyright 2008 Steven Barth <steven@midlink.org>
|
2015-01-16 22:46:42 +00:00
|
|
|
-- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
|
2015-01-16 22:38:38 +00:00
|
|
|
-- Licensed to the public under the Apache License 2.0.
|
2008-09-23 23:17:45 +00:00
|
|
|
|
2008-09-24 23:08:10 +00:00
|
|
|
m = Map("coovachilli")
|
2008-09-23 23:17:45 +00:00
|
|
|
|
|
|
|
-- general
|
2008-09-25 10:12:21 +00:00
|
|
|
s = m:section(TypedSection, "general")
|
|
|
|
s.anonymous = true
|
|
|
|
|
|
|
|
s:option( Flag, "debug" )
|
|
|
|
s:option( Value, "interval" )
|
|
|
|
s:option( Value, "pidfile" ).optional = true
|
|
|
|
s:option( Value, "statedir" ).optional = true
|
|
|
|
s:option( Value, "cmdsock" ).optional = true
|
|
|
|
s:option( Value, "logfacility" ).optional = true
|
2008-09-23 23:17:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
return m
|