mirror of https://github.com/Icinga/icinga2.git
15 lines
264 B
Plaintext
15 lines
264 B
Plaintext
|
#include "base/dynamicobject.h"
|
||
|
#include "base/application.h"
|
||
|
|
||
|
namespace icinga
|
||
|
{
|
||
|
|
||
|
class ExternalCommandListener : DynamicObject
|
||
|
{
|
||
|
[config] String command_path {
|
||
|
default {{{ return Application::GetLocalStateDir() + "/run/icinga2/cmd/icinga2.cmd"; }}}
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|