2021-04-02 16:57:13 +00:00
|
|
|
repo.libs.tools.require_bundle(node, 'postgresql')
|
|
|
|
repo.libs.tools.require_bundle(node, 'sshmon')
|
2020-11-10 11:40:12 +00:00
|
|
|
|
2020-11-10 12:43:46 +00:00
|
|
|
from os.path import join
|
|
|
|
|
2020-11-21 09:29:36 +00:00
|
|
|
ENABLED_FEATURES = {
|
|
|
|
'api',
|
|
|
|
'checker',
|
2022-03-13 13:07:28 +00:00
|
|
|
'command',
|
2020-11-21 09:29:36 +00:00
|
|
|
'ido-pgsql',
|
|
|
|
'mainlog',
|
|
|
|
'notification',
|
|
|
|
}
|
|
|
|
|
2020-11-22 12:28:14 +00:00
|
|
|
DAYS_TO_STRING = [
|
|
|
|
'sunday',
|
|
|
|
'monday',
|
|
|
|
'tuesday',
|
|
|
|
'wednesday',
|
|
|
|
'thursday',
|
|
|
|
'friday',
|
|
|
|
'saturday',
|
|
|
|
'sunday',
|
|
|
|
]
|
|
|
|
|
2020-11-21 07:57:46 +00:00
|
|
|
directories = {
|
|
|
|
'/etc/icingaweb2': {
|
|
|
|
'group': 'icingaweb2',
|
2022-03-12 07:53:48 +00:00
|
|
|
'mode': '2770',
|
2020-11-21 07:57:46 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icingaweb2',
|
|
|
|
},
|
|
|
|
},
|
2020-11-21 09:29:36 +00:00
|
|
|
'/etc/icinga2/features-enabled': {
|
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2021-08-07 05:13:41 +00:00
|
|
|
'mode': '0750',
|
2020-11-21 09:29:36 +00:00
|
|
|
'purge': True,
|
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2-ido-pgsql',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'/etc/icinga2/conf.d': {
|
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2021-08-07 05:13:41 +00:00
|
|
|
'mode': '0750',
|
2020-11-21 09:29:36 +00:00
|
|
|
'purge': True,
|
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
2022-02-18 11:25:34 +00:00
|
|
|
'/etc/icinga2/conf.d/hosts': {
|
2020-11-21 09:29:36 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2021-08-07 05:13:41 +00:00
|
|
|
'mode': '0750',
|
2020-11-21 09:29:36 +00:00
|
|
|
'purge': True,
|
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
2020-11-21 07:57:46 +00:00
|
|
|
}
|
|
|
|
|
2020-11-10 11:40:12 +00:00
|
|
|
files = {
|
2020-11-21 09:29:36 +00:00
|
|
|
### Checks
|
2020-11-10 11:40:12 +00:00
|
|
|
'/usr/local/share/icinga/plugins/check_by_sshmon': {
|
|
|
|
'mode': '0755',
|
|
|
|
},
|
2020-11-22 10:38:53 +00:00
|
|
|
'/usr/local/share/icinga/plugins/check_sipgate_account_balance': {
|
|
|
|
'mode': '0755',
|
|
|
|
},
|
2021-01-09 10:03:23 +00:00
|
|
|
'/usr/local/share/icinga/plugins/check_freifunk_node': {
|
|
|
|
'mode': '0755',
|
|
|
|
},
|
2022-01-02 13:50:32 +00:00
|
|
|
'/usr/local/share/icinga/plugins/check_imap_for_mail_from': {
|
|
|
|
'mode': '0755',
|
|
|
|
},
|
2021-11-28 06:26:41 +00:00
|
|
|
'/usr/local/share/icinga/plugins/check_spam_blocklist': {
|
|
|
|
'mode': '0755',
|
|
|
|
},
|
2021-04-25 06:02:04 +00:00
|
|
|
'/usr/local/share/icinga/plugins/check_usv_snmp': {
|
|
|
|
'mode': '0755',
|
|
|
|
},
|
2020-11-10 12:43:46 +00:00
|
|
|
'/etc/sshmon.priv': {
|
|
|
|
'content': repo.vault.decrypt_file(join('sshmon', 'sshmon.key.vault')),
|
2020-11-13 12:19:26 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2020-11-10 12:43:46 +00:00
|
|
|
'mode': '0400',
|
2020-11-13 12:19:26 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2-ido-pgsql',
|
|
|
|
},
|
2020-11-21 07:57:46 +00:00
|
|
|
},
|
2020-11-21 09:29:36 +00:00
|
|
|
|
|
|
|
# Icinga2
|
|
|
|
'/etc/icinga2/icinga2.conf': {
|
|
|
|
'source': 'icinga2/icinga2.conf',
|
2021-08-07 05:13:41 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2022-12-17 10:45:10 +00:00
|
|
|
'mode': '0640',
|
2020-11-21 09:29:36 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
2023-04-09 15:32:36 +00:00
|
|
|
'/etc/icinga2/notification_config.json': {
|
|
|
|
'content': repo.libs.faults.dict_as_json({
|
|
|
|
'sipgate': {
|
|
|
|
'user': node.metadata.get('icinga2/sipgate/user'),
|
|
|
|
'password': node.metadata.get('icinga2/sipgate/pass'),
|
|
|
|
},
|
|
|
|
'ntfy': {
|
|
|
|
'url': node.metadata.get('icinga2/ntfy/url'),
|
|
|
|
'user': node.metadata.get('icinga2/ntfy/user'),
|
|
|
|
'password': node.metadata.get('icinga2/ntfy/pass'),
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
},
|
2020-11-22 08:04:02 +00:00
|
|
|
'/etc/icinga2/scripts/icinga_notification_wrapper': {
|
|
|
|
'source': 'scripts/icinga_notification_wrapper',
|
|
|
|
'mode': '0755',
|
|
|
|
},
|
2020-11-21 09:29:36 +00:00
|
|
|
'/etc/icinga2/features-available/ido-pgsql.conf': {
|
|
|
|
'source': 'icinga2/ido-pgsql.conf',
|
|
|
|
'content_type': 'mako',
|
2021-08-07 05:13:41 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2020-11-21 09:29:36 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'/etc/icinga2/conf.d/api-users.conf': {
|
|
|
|
'source': 'icinga2/api-users.conf',
|
|
|
|
'content_type': 'mako',
|
2021-08-07 05:13:41 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2020-11-21 09:29:36 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'/etc/icinga2/conf.d/app.conf': {
|
|
|
|
'source': 'icinga2/app.conf',
|
2021-08-07 05:13:41 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2020-11-21 09:29:36 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'/etc/icinga2/conf.d/check_commands.conf': {
|
|
|
|
'source': 'icinga2/check_commands.conf',
|
2021-08-07 05:13:41 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2020-11-21 09:29:36 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
2022-02-18 11:25:34 +00:00
|
|
|
'/etc/icinga2/conf.d/hosts.conf': {
|
|
|
|
'source': 'icinga2/hosts.conf',
|
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
2020-11-22 08:04:02 +00:00
|
|
|
'/etc/icinga2/conf.d/notification_commands.conf': {
|
|
|
|
'source': 'icinga2/notification_commands.conf',
|
2021-08-07 05:13:41 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2020-11-22 08:04:02 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'/etc/icinga2/conf.d/notifications.conf': {
|
|
|
|
'source': 'icinga2/notifications.conf',
|
2021-08-07 05:13:41 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2020-11-22 08:04:02 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
2020-11-21 09:29:36 +00:00
|
|
|
'/etc/icinga2/conf.d/templates.conf': {
|
|
|
|
'source': 'icinga2/templates.conf',
|
2021-08-07 05:13:41 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2020-11-21 09:29:36 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'/etc/icinga2/conf.d/timeperiods.conf': {
|
|
|
|
'source': 'icinga2/timeperiods.conf',
|
2021-08-07 05:13:41 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2020-11-21 09:29:36 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'/etc/icinga2/conf.d/users.conf': {
|
|
|
|
'source': 'icinga2/users.conf',
|
2021-08-07 05:13:41 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2020-11-21 09:29:36 +00:00
|
|
|
'content_type': 'mako',
|
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
# IcingaWeb2
|
|
|
|
'/etc/icingaweb2/authentication.ini': {
|
|
|
|
'source': 'icingaweb2/authentication.ini',
|
|
|
|
'mode': '0660',
|
|
|
|
'group': 'icingaweb2',
|
|
|
|
},
|
|
|
|
'/etc/icingaweb2/config.ini': {
|
|
|
|
'source': 'icingaweb2/config.ini',
|
|
|
|
'mode': '0660',
|
|
|
|
'group': 'icingaweb2',
|
|
|
|
},
|
2023-08-25 09:08:54 +00:00
|
|
|
'/etc/icingaweb2/modules/monitoring/config.ini': {
|
|
|
|
'source': 'icingaweb2/monitoring_config.ini',
|
|
|
|
'mode': '0660',
|
|
|
|
'group': 'icingaweb2',
|
|
|
|
},
|
2020-11-21 09:29:36 +00:00
|
|
|
'/etc/icingaweb2/groups.ini': {
|
|
|
|
'source': 'icingaweb2/groups.ini',
|
2020-11-21 07:57:46 +00:00
|
|
|
'mode': '0660',
|
|
|
|
'group': 'icingaweb2',
|
|
|
|
},
|
2020-11-21 09:29:36 +00:00
|
|
|
'/etc/icingaweb2/resources.ini': {
|
|
|
|
'source': 'icingaweb2/resources.ini',
|
|
|
|
'content_type': 'mako',
|
|
|
|
'mode': '0660',
|
|
|
|
'group': 'icingaweb2',
|
|
|
|
},
|
2022-03-13 13:07:28 +00:00
|
|
|
'/etc/icingaweb2/roles.ini': {
|
|
|
|
'source': 'icingaweb2/roles.ini',
|
|
|
|
'mode': '0660',
|
|
|
|
'group': 'icingaweb2',
|
|
|
|
},
|
2024-04-20 16:30:39 +00:00
|
|
|
|
|
|
|
# monitoring
|
|
|
|
'/etc/icinga2/icinga_statusmonitor.py': {
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga_statusmonitor:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'/usr/local/lib/systemd/system/icinga_statusmonitor.service': {
|
|
|
|
'triggers': {
|
|
|
|
'action:systemd-reload',
|
|
|
|
'svc_systemd:icinga_statusmonitor:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
svc_systemd['icinga_statusmonitor'] = {
|
|
|
|
'needs': {
|
|
|
|
'file:/etc/icinga2/icinga_statusmonitor.py',
|
|
|
|
'file:/usr/local/lib/systemd/system/icinga_statusmonitor.service',
|
|
|
|
'pkg_apt:python3-flask',
|
|
|
|
},
|
2022-03-13 13:07:28 +00:00
|
|
|
}
|
|
|
|
|
2020-11-21 09:29:36 +00:00
|
|
|
actions = {
|
|
|
|
'icinga2_api_setup': {
|
|
|
|
'command': 'icinga2 api setup',
|
|
|
|
'unless': 'test -e /var/lib/icinga2/certs/{}.crt'.format(node.metadata['hostname']),
|
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for feature in ENABLED_FEATURES:
|
|
|
|
symlinks[f'/etc/icinga2/features-enabled/{feature}.conf'] = {
|
|
|
|
'target': f'/etc/icinga2/features-available/{feature}.conf',
|
2021-08-07 05:13:41 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2020-11-21 09:29:36 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2021-01-30 16:31:05 +00:00
|
|
|
icinga_run_deps = {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
'pkg_apt:icinga2-ido-pgsql',
|
|
|
|
}
|
2021-02-12 19:37:36 +00:00
|
|
|
for name in actions:
|
2021-01-30 16:31:05 +00:00
|
|
|
icinga_run_deps.add(f'action:{name}')
|
2021-02-12 19:37:36 +00:00
|
|
|
for name in directories:
|
2021-01-30 16:31:05 +00:00
|
|
|
icinga_run_deps.add(f'directory:{name}')
|
2021-02-12 19:37:36 +00:00
|
|
|
for name in files:
|
2021-01-30 16:31:05 +00:00
|
|
|
icinga_run_deps.add(f'file:{name}')
|
2021-02-12 19:37:36 +00:00
|
|
|
for name in symlinks:
|
2021-01-30 16:31:05 +00:00
|
|
|
icinga_run_deps.add(f'symlink:{name}')
|
|
|
|
|
2024-04-20 16:30:39 +00:00
|
|
|
svc_systemd['icinga2'] = {
|
|
|
|
'needs': icinga_run_deps,
|
2020-11-21 09:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# The actual hosts and services management starts here
|
2022-02-18 11:25:34 +00:00
|
|
|
bundles = set()
|
2023-05-20 05:46:23 +00:00
|
|
|
downtimes = []
|
|
|
|
for rnode in sorted(repo.nodes):
|
2022-02-18 11:25:34 +00:00
|
|
|
if rnode.metadata.get('icinga_options/exclude_from_monitoring', False):
|
|
|
|
continue
|
2020-11-21 09:29:36 +00:00
|
|
|
|
2023-09-24 19:07:21 +00:00
|
|
|
host_ips = repo.libs.tools.resolve_identifier(repo, rnode.name, only_physical=True)
|
2022-03-13 14:15:47 +00:00
|
|
|
icinga_ips = {}
|
|
|
|
|
2023-12-16 09:23:44 +00:00
|
|
|
for ip_type in ('ipv4', 'ipv6'):
|
|
|
|
for ip in sorted(host_ips[ip_type]):
|
|
|
|
if ip.is_private and not ip.is_link_local:
|
|
|
|
icinga_ips[ip_type] = str(ip)
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
if host_ips[ip_type]:
|
|
|
|
icinga_ips[ip_type] = sorted(host_ips[ip_type])[0]
|
2022-03-13 14:15:47 +00:00
|
|
|
|
|
|
|
if not icinga_ips:
|
|
|
|
raise ValueError(f'{rnode.name} requests monitoring, but has neither IPv4 nor IPv6 addresses!')
|
|
|
|
|
2022-02-18 11:25:34 +00:00
|
|
|
files[f'/etc/icinga2/conf.d/hosts/{rnode.name}.conf'] = {
|
|
|
|
'source': 'icinga2/hosts_template.conf',
|
2020-11-21 09:29:36 +00:00
|
|
|
'content_type': 'mako',
|
|
|
|
'context': {
|
2022-02-18 11:25:34 +00:00
|
|
|
'rnode': rnode,
|
2022-03-13 14:15:47 +00:00
|
|
|
'address4': icinga_ips.get('ipv4', None),
|
|
|
|
'address6': icinga_ips.get('ipv6', None),
|
2020-11-21 09:29:36 +00:00
|
|
|
},
|
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2022-01-02 13:50:32 +00:00
|
|
|
'cascade_skip': False, # may contain faults
|
2020-11-21 09:29:36 +00:00
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-02-18 11:25:34 +00:00
|
|
|
bundles |= set(rnode.metadata.get('icinga2_api', {}).keys())
|
|
|
|
|
2023-05-20 05:46:23 +00:00
|
|
|
if rnode.has_any_bundle(['apt', 'c3voc-addons']):
|
|
|
|
day = rnode.metadata.get('apt/unattended-upgrades/day')
|
|
|
|
hour = rnode.metadata.get('apt/unattended-upgrades/hour')
|
|
|
|
minute = rnode.magic_number%30
|
|
|
|
|
|
|
|
spread = rnode.metadata.get('apt/unattended-upgrades/spread_in_group', None)
|
|
|
|
if spread is not None:
|
|
|
|
spread_nodes = sorted(repo.nodes_in_group(spread))
|
|
|
|
day += spread_nodes.index(rnode)
|
|
|
|
|
|
|
|
downtimes.append({
|
|
|
|
'name': 'unattended-upgrades',
|
|
|
|
'host': rnode.name,
|
|
|
|
'comment': f'Downtime for upgrade-and-reboot of node {rnode.name}',
|
|
|
|
'times': {
|
2023-12-16 09:19:33 +00:00
|
|
|
DAYS_TO_STRING[day%7]: f'{hour}:{minute}-{hour}:{minute+15}',
|
2023-05-20 05:46:23 +00:00
|
|
|
},
|
|
|
|
})
|
|
|
|
elif (
|
|
|
|
rnode.has_bundle('pacman')
|
|
|
|
and rnode.metadata.get('pacman/unattended-upgrades/is_enabled', False)
|
|
|
|
):
|
|
|
|
day = rnode.metadata.get('pacman/unattended-upgrades/day')
|
|
|
|
hour = rnode.metadata.get('pacman/unattended-upgrades/hour')
|
|
|
|
minute = rnode.magic_number%30
|
|
|
|
|
|
|
|
downtimes.append({
|
|
|
|
'name': 'unattended-upgrades',
|
|
|
|
'host': rnode.name,
|
|
|
|
'comment': f'Downtime for upgrade-and-reboot of node {rnode.name}',
|
|
|
|
'times': {
|
2023-12-16 09:19:33 +00:00
|
|
|
DAYS_TO_STRING[day%7]: f'{hour}:{minute}-{hour}:{minute+15}',
|
2023-05-20 05:46:23 +00:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2020-11-21 22:04:15 +00:00
|
|
|
files['/etc/icinga2/conf.d/groups.conf'] = {
|
|
|
|
'source': 'icinga2/groups.conf',
|
|
|
|
'content_type': 'mako',
|
|
|
|
'context': {
|
2022-02-18 11:25:34 +00:00
|
|
|
'bundles': bundles,
|
2020-11-21 22:04:15 +00:00
|
|
|
},
|
2021-08-07 05:13:41 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2020-11-21 22:04:15 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
}
|
2022-02-18 11:25:34 +00:00
|
|
|
|
2020-11-22 12:28:14 +00:00
|
|
|
files['/etc/icinga2/conf.d/downtimes.conf'] = {
|
|
|
|
'source': 'icinga2/downtimes.conf',
|
|
|
|
'content_type': 'mako',
|
|
|
|
'context': {
|
2023-05-20 05:46:23 +00:00
|
|
|
'downtimes': downtimes,
|
2020-11-22 12:28:14 +00:00
|
|
|
},
|
2021-08-07 05:13:41 +00:00
|
|
|
'owner': 'nagios',
|
|
|
|
'group': 'nagios',
|
2020-11-22 12:28:14 +00:00
|
|
|
'needs': {
|
|
|
|
'pkg_apt:icinga2',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:icinga2:restart',
|
|
|
|
},
|
|
|
|
}
|