mirror of
https://github.com/Icinga/icinga2.git
synced 2025-10-16 04:48:53 +02:00
15 lines
268 B
Plaintext
15 lines
268 B
Plaintext
#include "base/dynamicobject.hpp"
|
|
#include "base/application.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class ExternalCommandListener : DynamicObject
|
|
{
|
|
[config] String command_path {
|
|
default {{{ return Application::GetLocalStateDir() + "/run/icinga2/cmd/icinga2.cmd"; }}}
|
|
};
|
|
};
|
|
|
|
}
|