Ansible for IPA

This commit is contained in:
Florence Blanc-Renaud
2017-07-03 09:55:23 +02:00
commit 09f45e4acd
13 changed files with 814 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
---
# tasks file for ipaclient
- name: Import variables specific to distribution
include_vars: "{{ item }}"
with_first_found:
- vars/{{ ansible_distribution }}.yml
- vars/default.yml
- name: Install IPA client
include: tasks/install.yml
when: state|default('present') == 'present'
- name: Uninstall IPA client
include: tasks/uninstall.yml
when: state|default('present') == 'absent'