mirror of
https://github.com/Icinga/icinga2.git
synced 2026-03-23 19:05:11 -04:00
15 lines
230 B
Text
15 lines
230 B
Text
#include "base/dynamicobject.h"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
abstract class Command : DynamicObject
|
|
{
|
|
[config] Value command (CommandLine);
|
|
[config] Value timeout {
|
|
default {{{ return 300; }}}
|
|
};
|
|
[config] Dictionary::Ptr env;
|
|
};
|
|
|
|
}
|