coovachilli.lua 507 B

12345678910111213141516171819
  1. -- Copyright 2008 Steven Barth <steven@midlink.org>
  2. -- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
  3. -- Licensed to the public under the Apache License 2.0.
  4. m = Map("coovachilli")
  5. -- general
  6. s = m:section(TypedSection, "general")
  7. s.anonymous = true
  8. s:option( Flag, "debug" )
  9. s:option( Value, "interval" )
  10. s:option( Value, "pidfile" ).optional = true
  11. s:option( Value, "statedir" ).optional = true
  12. s:option( Value, "cmdsock" ).optional = true
  13. s:option( Value, "logfacility" ).optional = true
  14. return m