mirror of
https://github.com/Icinga/icinga2.git
synced 2025-05-16 12:30:18 +02:00
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"; }}}
|
|
};
|
|
};
|
|
|
|
}
|