--- - name: "[OpenRC] Disable and stop service: spawn-fcgi.cgit" service: name: spawn-fcgi.cgit enabled: no state: stopped when: - ansible_service_mgr == "openrc" - name: "[Alpine] Remove Package(s): cgit and it's dependecys" apk: name: cgit spawn-fcgi fcgiwrap py3-markdown py3-pygments state: absent when: - ansible_distribution == "Alpine" - name: "Delete leftovers" file: path: "{{item}}" state: absent with_items: - /etc/cgitrc - /usr/share/webapps/cgit - /etc/conf.d/spawn-fcgi.cgit - /etc/init.d/spawn-fcgi.cgit - /etc/nginx/conf.d/cgit.conf notify: "Restart nginx"