2013-10-26 09:41:45 +02:00
|
|
|
#include "base/dynamicobject.h"
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2013-11-08 11:17:46 +01:00
|
|
|
abstract class Command : DynamicObject
|
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 {
|
|
|
|
default {{{ return 300; }}}
|
|
|
|
};
|
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
|
|
|
}
|