2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/customvarobject.hpp"
|
2013-10-26 09:41:45 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2014-05-12 16:45:25 +02:00
|
|
|
abstract class Command : CustomVarObject
|
2013-10-26 09:41:45 +02:00
|
|
|
{
|
2013-10-30 19:32:15 +01:00
|
|
|
[config] Value command (CommandLine);
|
2014-04-26 13:16:08 +02:00
|
|
|
[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
|
|
|
};
|
2014-04-04 22:57:56 +02:00
|
|
|
[config] Dictionary::Ptr env;
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
|
2013-10-30 19:32:15 +01:00
|
|
|
}
|