Files
ansible-freeipa/roles/ipaclient/tasks/uninstall.yml
Thomas Woerner 990da8341f ipaclient vars: Renamed ipaclient_package to ipaclient_packages
The rename was needed to be able to have more than one package in the list
of required packages.

For RHEL-7.3 it has been needed to add ipa-admintools to have /usr/bin/ipa
available. libselinux-python has been added for all.
2017-10-04 17:22:40 +02:00

13 lines
242 B
YAML

---
# tasks to uninstall IPA client
- name: Uninstall - Uninstall IPA client
ipaclient:
state: absent
#- name: Remove IPA client package
# package:
# name: "{{ item }}"
# state: absent
# with_items: "{{ ipaclient_packages }}"