]> granicus.if.org Git - icinga2/blob - lib/compat/externalcommandlistener.ti
Merge pull request #7145 from Icinga/feature/dotnet-4.6
[icinga2] / lib / compat / externalcommandlistener.ti
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #include "base/configobject.hpp"
4 #include "base/application.hpp"
5
6 library compat;
7
8 namespace icinga
9 {
10
11 class ExternalCommandListener : ConfigObject
12 {
13         activation_priority 100;
14
15         [config] String command_path {
16                 default {{{ return Configuration::InitRunDir + "/cmd/icinga2.cmd"; }}}
17         };
18 };
19
20 }