mirror of
https://github.com/Icinga/icinga2.git
synced 2025-09-30 21:18:47 +02:00
15 lines
257 B
Plaintext
15 lines
257 B
Plaintext
#include "base/dynamicobject.hpp"
|
|
#include "base/application.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class ExternalCommandListener : DynamicObject
|
|
{
|
|
[config] String command_path {
|
|
default {{{ return Application::GetRunDir() + "/icinga2/cmd/icinga2.cmd"; }}}
|
|
};
|
|
};
|
|
|
|
}
|