blob: 921c2d6e5b82cded31675fb8fa27403b83e2f66e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/**
* vi: ft=icinga2
* This File is managed by Ansible. Do NOT change.
*/
include "constants.conf"
include "zones.conf"
include <itl>
include <plugins>
include <plugins-contrib>
include <manubulon>
include <windows-plugins>
include <nscp>
include "features-enabled/*.conf"
include "ido-mysql.conf"
include "api_users.conf"
include "influx.conf"
{% if icinga.config.manage is true %}
include_recursive "conf.git.d"
{% else %}
include_recursive "conf.d"
{% endif %}
|