--- - name: "[OpenRC] Disable and stop service: oeffisearchX" service: name: "oeffisearch{{item}}" enabled: no state: stopped loop: - 1 - 2 - 3 - 4 when: - ansible_service_mgr == "openrc" - name: "[Alpine] Remove package: oeffisearch" apk: name: oeffisearch state: absent when: - ansible_distribution == "Alpine" - name: "Delete files: /etc/init.d/oeffisearchX" file: path: "/etc/init.d/oeffisearch{{ item }}" state: absent loop: - 1 - 2 - 3 - 4 when: - ansible_distribution == "Alpine" - name: "Delete directory: /var/log/oeffisearch" file: path: /var/log/oeffisearch state: absent when: - ansible_distribution == "Alpine" - name: "Delete nginx vhost for: oeffis" file: path: /etc/nginx/conf.d/oeffisearch.conf state: absent notify: "Restart nginx"