Files
ansible-freeipa/roles/ipaclient/tasks/uninstall.yml
Thomas Woerner cf4c590303 ipa[server,replica,client]: Drop deactivated Python2/3 test
These tests have been deactivated for some time with b51397e and are
removed now.
2020-09-08 14:44:39 +02:00

18 lines
435 B
YAML

---
# tasks to uninstall IPA client
- name: Uninstall - Uninstall IPA client
command: >
/usr/sbin/ipa-client-install
--uninstall
-U
register: uninstall
# 2 means that uninstall failed because IPA client was not configured
failed_when: uninstall.rc != 0 and uninstall.rc != 2
changed_when: uninstall.rc == 0
#- name: Remove IPA client package
# package:
# name: "{{ ipaclient_packages }}"
# state: absent