icinga2/lib/icinga/command.ti

18 lines
305 B
Plaintext

#include "base/dynamicobject.h"
namespace icinga
{
abstract class Command : DynamicObject
{
[config] Value command (CommandLine);
[config] Value timeout {
default {{{ return 300; }}}
};
[config] Dictionary::Ptr macros;
[config] Array::Ptr export_macros;
[config] Array::Ptr escape_macros;
};
}