--- - name: "[OpenRC] Disable and stop service: fritzbox-exporter" service: name: fritzbox-exporter enabled: no state: stopped when: - ansible_service_mgr == "openrc" - name: "[systemd] Disable and stop service: fritzbox-exporter" systemd: name: fritzbox-exporter enabled: no state: stopped when: - ansible_service_mgr == "systemd" - name: "[Alpine] Remove package: fritzbox-exporter" apk: name: fritzbox-exporter state: absent when: - ansible_distribution == "Alpine" - name: "[Archlinux] Remove package: fritzbox-exporter" pacman: name: fritzbox-exporter state: absent when: - ansible_distribution == "Archlinux" - name: "Delete nginx vhost for: fritzbox-exporter" file: path: /etc/nginx/conf.d/fritzbox-exporter.conf state: absent notify: "Restart nginx" - name: "[nftables] Delete rule for: fritzbox-exporter" file: path: /etc/nftables.d/fritzbox-exporter.nft state: absent notify: "Restart nftables"