mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
The playbooks install-client.yml, install-cluster.yml, install-replica.yml, install-server.yml, uninstall-client.yml, uninstall-cluster.yml, uninstall-replica.yml and uninstall-server.yml have been moved into the playbooks folder.
25 lines
347 B
YAML
25 lines
347 B
YAML
---
|
|
- name: Uninstall IPA clients
|
|
hosts: ipaclients
|
|
become: true
|
|
|
|
roles:
|
|
- role: ipaclient
|
|
state: absent
|
|
|
|
- name: Uninstall IPA replicas
|
|
hosts: ipareplicas
|
|
become: true
|
|
|
|
roles:
|
|
- role: ipareplica
|
|
state: absent
|
|
|
|
- name: Uninstall IPA servers
|
|
hosts: ipaserver
|
|
become: true
|
|
|
|
roles:
|
|
- role: ipaserver
|
|
state: absent
|