mirror of
https://github.com/Icinga/icinga2.git
synced 2025-09-29 12:38:43 +02:00
16 lines
230 B
Plaintext
16 lines
230 B
Plaintext
#include "base/dynamicobject.h"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
abstract class Command : DynamicObject
|
|
{
|
|
[config] Value command (CommandLine);
|
|
[config] Value timeout {
|
|
default {{{ return 300; }}}
|
|
};
|
|
[config] Dictionary::Ptr env;
|
|
};
|
|
|
|
}
|