mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
17 lines
264 B
Plaintext
17 lines
264 B
Plaintext
#include "icinga/customvarobject.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
abstract class Command : CustomVarObject
|
|
{
|
|
[config] Value command (CommandLine);
|
|
[config] Value arguments;
|
|
[config] Value timeout {
|
|
default {{{ return 60; }}}
|
|
};
|
|
[config] Dictionary::Ptr env;
|
|
};
|
|
|
|
}
|