icinga2/lib/icinga/command.ti

17 lines
266 B
Plaintext
Raw Normal View History

2013-10-26 09:41:45 +02:00
#include "base/dynamicobject.h"
namespace icinga
{
abstract class Command : DynamicObject
2013-10-26 09:41:45 +02:00
{
2013-10-30 19:32:15 +01:00
[config] Value command (CommandLine);
2013-10-26 09:41:45 +02:00
[config] Value timeout {
default {{{ return 300; }}}
};
[config] Dictionary::Ptr env;
2013-10-26 09:41:45 +02:00
[config] Array::Ptr escape_macros;
};
2013-10-30 19:32:15 +01:00
}