--- - name: "[systemd] Disable and stop service: mosquitto" systemd: name: "mosquitto" enabled: no state: stopped when: - ansible_service_mgr == "systemd" - name: "[Archlinux] Remove package: mosquitto" pacman: name: mosquitto state: absent when: - ansible_distribution == "Archlinux" - name: "Delete leftovers" file: path: "{{item}}" state: absent with_items: - /etc/mosquitto