icinga2/lib/notification/notificationcomponent.ti

20 lines
276 B
Plaintext
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "base/configobject.hpp"
2013-10-26 09:41:45 +02:00
library notification;
2013-10-26 09:41:45 +02:00
namespace icinga
{
class NotificationComponent : ConfigObject
2013-10-26 09:41:45 +02:00
{
activation_priority 200;
[config] bool enable_ha (EnableHA) {
default {{{ return true; }}}
};
2013-10-26 09:41:45 +02:00
};
}