mirror of
https://github.com/Icinga/icinga2.git
synced 2025-05-05 15:10:18 +02:00
17 lines
257 B
Plaintext
17 lines
257 B
Plaintext
#include "base/dynamicobject.h"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
abstract class Command : DynamicObject
|
|
{
|
|
[config] Value command (CommandLine);
|
|
[config] Value arguments;
|
|
[config] Value timeout {
|
|
default {{{ return 300; }}}
|
|
};
|
|
[config] Dictionary::Ptr env;
|
|
};
|
|
|
|
}
|