--- - name: Setup Icinga2 common things gather_facts: false hosts: all tags: common tasks: - name: Install required packages tags: install become: true ansible.builtin.apt: name: - icinga2 - monitoring-plugins-basic - monitoring-plugins-common - monitoring-plugins-standard - monitoring-plugins-systemd - monitoring-plugins-contrib state: present - name: Copy sudoers file for nagios as root (for check_smart) become: true ansible.builtin.copy: content: 'nagios ALL=(root) NOPASSWD:/usr/lib/nagios/plugins/check_ide_smart' dest: /etc/sudoers.d/nagios-smart owner: root group: root mode: 0440 validate: 'visudo -cf %s' - name: Copy check_local_unread_emails script become: true ansible.builtin.get_url: url: "https://gitlab.easter-eggs.com/brenard/check_local_unread_emails/-/raw/master/check_local_unread_emails" checksum: "sha256:1b8a10ab32255b56a405bc43d391b1545b052181f2be964ae08828d05da4690e" dest: /usr/lib/nagios/plugins/check_local_unread_emails owner: root group: root mode: 0755 - name: Setup Icinga2 master gather_facts: true hosts: lime2servers roles: - role: common_handlers tags: always - role: icinga2_master tags: master - name: Setup Icinga2 agent gather_facts: true hosts: mailservers roles: - role: common_handlers tags: always - role: icinga2_agent tags: agent