icinga2/lib/icinga/command.ti

17 lines
262 B
Plaintext
Raw Normal View History

#include "icinga/customvarobject.h"
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
}