mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-10 10:45:55 +00:00
With the test it is not needed to pin down the python interpreter for ansible modules. It is therefore possible to use a Python2 version on Fedora-27 and a Python3 version on Fedora-26.
17 lines
360 B
YAML
17 lines
360 B
YAML
---
|
|
# tasks to uninstall IPA client
|
|
|
|
- name: Uninstall - Include Python2/3 import test
|
|
include: "{{role_path}}/tasks/python_2_3_test.yml"
|
|
static: yes
|
|
|
|
- name: Uninstall - Uninstall IPA client
|
|
ipaclient:
|
|
state: absent
|
|
|
|
#- name: Remove IPA client package
|
|
# package:
|
|
# name: "{{ item }}"
|
|
# state: absent
|
|
# with_items: "{{ ipaclient_packages }}"
|