icinga2/lib/icinga/command.ti

17 lines
264 B
Plaintext
Raw Normal View History

2014-05-25 16:23:35 +02:00
#include "icinga/customvarobject.hpp"
2013-10-26 09:41:45 +02:00
namespace icinga
{
abstract class Command : CustomVarObject
2013-10-26 09:41:45 +02:00
{
2013-10-30 19:32:15 +01:00
[config] Value command (CommandLine);
[config] Value arguments;
2013-10-26 09:41:45 +02:00
[config] Value timeout {
2014-05-19 13:09:26 +02:00
default {{{ return 60; }}}
2013-10-26 09:41:45 +02:00
};
[config] Dictionary::Ptr env;
2013-10-26 09:41:45 +02:00
};
2013-10-30 19:32:15 +01:00
}