--- - name: "[OpenRC] Disable and stop service: postgresql" service: name: postgresql enabled: no state: stopped when: - ansible_service_mgr == "openrc" - name: "[systemd] Disable and stop service: postgresql" systemd: name: postgresql enabled: no state: stopped when: - ansible_service_mgr == "systemd" - name: "[Alpine] Remove package: postgresql" apk: name: postgresql postgresql-contrib state: absent when: - ansible_distribution == "Alpine" - name: "[Archlinux] Remove package: postgresql" pacman: name: postgresql postgresql-contrib state: absent when: - ansible_distribution == "Archlinux"