From dd023fc1b164f009cec8317d49219ba47444fc21 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Tue, 1 Oct 2013 08:35:38 +0200 Subject: [PATCH] Add feature config files for checker/notification. --- etc/icinga2/features-available/Makefile.am | 2 ++ etc/icinga2/features-available/checker.conf | 7 +++++++ etc/icinga2/features-available/notification.conf | 7 +++++++ 3 files changed, 16 insertions(+) create mode 100644 etc/icinga2/features-available/checker.conf create mode 100644 etc/icinga2/features-available/notification.conf diff --git a/etc/icinga2/features-available/Makefile.am b/etc/icinga2/features-available/Makefile.am index ef67dc7b4..c99341e3e 100644 --- a/etc/icinga2/features-available/Makefile.am +++ b/etc/icinga2/features-available/Makefile.am @@ -3,10 +3,12 @@ icinga2confdir = $(sysconfdir)/icinga2/features-available CONFIG_FILES = \ + checker.conf \ command.conf \ compat-log.conf \ ido-mysql.conf \ livestatus.conf \ + notification.conf \ perfdata.conf \ statusdat.conf diff --git a/etc/icinga2/features-available/checker.conf b/etc/icinga2/features-available/checker.conf new file mode 100644 index 000000000..13755b50a --- /dev/null +++ b/etc/icinga2/features-available/checker.conf @@ -0,0 +1,7 @@ +/** + * The checker component takes care of executing service checks. + * + +library "checker" + +object CheckerComponent "checker" { } diff --git a/etc/icinga2/features-available/notification.conf b/etc/icinga2/features-available/notification.conf new file mode 100644 index 000000000..91d80313d --- /dev/null +++ b/etc/icinga2/features-available/notification.conf @@ -0,0 +1,7 @@ +/** + * The notification component takes care of executing service checks. + * + +library "notification" + +object NotificationComponent "notification" { }