- name: install notification packages apt: name: "{{ item }}" with_items: - "{{ ick_prefix }}ick2" - name: create config dirs file: state: directory path: "{{ item }}" owner: root group: root mode: 0755 with_items: - /etc/ick - name: install notification config template: src: notifications.yaml.j2 dest: /etc/ick/notifications.yaml owner: root group: root mode: 0644 - name: enable and start units systemd: daemon_reload: yes name: "{{ item }}" state: restarted enabled: yes with_items: - notification_service