--- - name: "[OpenRC] Disable and stop service: radicale" service: name: radicale enabled: no state: stopped when: - ansible_service_mgr == "openrc" - name: "[systemd] Disable and stop service: radicale" systemd: name: radicale enabled: no state: stopped when: - ansible_service_mgr == "systemd" - name: "[Alpine] Remove package: radicale" apk: name: radicale state: absent when: - ansible_distribution == "Alpine" - name: "[Archlinux] Remove package: radicale" pacman: name: radicale state: absent when: - ansible_distribution == "Archlinux" - name: "Delete leftovers" file: path: "{{item}}" state: absent with_items: - /etc/radicale - name: "Delete nginx vhost for: radicale" file: path: /etc/nginx/conf.d/radicale.conf state: absent notify: "Restart nginx"