ansible-role-ansible/tasks/uninstall.yml
2020-04-05 23:51:37 +02:00

27 lines
759 B
YAML

---
- name: Remove Ansible's files
file:
path: "/etc/yum.repos.d/ansible.repo"
state: absent
when:
- ansible_os_family == 'RedHat'
- name: Registering Ubuntu Ansible repository
apt_repository:
repo: ppa:ansible/ansible
state: absent
update_cache: yes
when:
- ansible_distribution == "Ubuntu"
- name: Registering Debian Ansible repository
apt_repository:
repo: deb http://ppa.launchpad.net/ansible/ansible/ubuntu {{ ansible_distribution_name }} main
filename: ansible.list
state: absent
update_cache: yes
when:
- ansible_distribution == "Debian"
- name: Remove Ansible's packages
package: name='{{ ansible_packages }}' state=absent update_cache=yes