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