icinga2/lib/icinga/command.ti
Michael Friedrich 31e3377897 Drop duplicate attribute.
Refs #5855
2014-04-04 23:03:20 +02:00

17 lines
266 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 env;
[config] Array::Ptr escape_macros;
};
}