--- - name: Setup Icinga2 common things gather_facts: false hosts: all 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: 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