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