ntpsnmpd-opts.def revision 258945
1258945Sroberto/* -*- Mode: Text -*- */
2258945Sroberto
3258945Srobertoautogen definitions options;
4258945Sroberto
5258945Sroberto#include copyright.def
6258945Sroberto#include homerc.def
7258945Sroberto#include autogen-version.def
8258945Sroberto
9258945Srobertoprog-name      = "ntpsnmpd";
10258945Srobertoprog-title     = "NTP SNMP MIB agent";
11258945Sroberto
12258945Srobertotest-main;
13258945Sroberto
14258945Srobertoflag = {
15258945Sroberto    name      = nofork;
16258945Sroberto    value     = n;
17258945Sroberto    descrip   = "Do not fork";
18258945Sroberto    doc = <<-  _EndOfDoc_
19258945Sroberto	_EndOfDoc_;
20258945Sroberto};
21258945Sroberto
22258945Srobertoflag = {
23258945Sroberto    name      = syslog;
24258945Sroberto    value     = p;
25258945Sroberto    descrip   = "Log to syslog()";
26258945Sroberto    doc = <<-  _EndOfDoc_
27258945Sroberto	_EndOfDoc_;
28258945Sroberto};
29258945Sroberto
30258945Srobertoflag = {
31258945Sroberto    name      = agentXSocket;
32258945Sroberto/*  value     = x; */
33258945Sroberto    arg-type  = string;
34258945Sroberto    arg-default = "unix:/var/agentx/master";
35258945Sroberto    descrip   = "The socket address ntpsnmpd uses to connect to net-snmpd";
36258945Sroberto    doc = <<-  _EndOfDoc_
37258945Sroberto	[<transport-specifier>:]<transport-address>
38258945Sroberto	The default is the Unix Domain socket "unix:/var/agentx/master". Another common alternative is tcp:localhost:705.
39258945Sroberto	_EndOfDoc_;
40258945Sroberto};
41