mono-infrastructure/ansible/playbooks/role-rocky-ipa-client.yml

38 lines
820 B
YAML
Raw Normal View History

2020-12-10 07:33:09 +00:00
---
2020-12-10 07:42:05 +00:00
# Configures an IPA client for the Rocky infrastructure
2020-12-10 07:33:09 +00:00
- name: Configure IPA client
hosts: ipaclients
become: true
vars_files:
- vars/encpass.yml
- vars/ipaclient.yml
2020-12-10 07:33:09 +00:00
pre_tasks:
- name: Check if ansible cannot be run here
stat:
path: /etc/no-ansible
register: no_ansible
- name: Verify if we can run ansible
assert:
that:
- "not no_ansible.stat.exists"
msg: "/etc/no-ansible exists - skipping run on this node"
2020-12-12 07:57:10 +00:00
# - name: Check if we can see LDAP srv records
2020-12-11 21:00:14 +00:00
2020-12-10 07:33:09 +00:00
roles:
- role: freeipa.ansible_freeipa.ipaclient
2020-12-11 07:39:15 +00:00
state: present
2020-12-10 07:33:09 +00:00
post_tasks:
- name: Touching run file that ansible has ran here
file:
path: /var/log/ansible.run
state: touch
2020-12-11 07:39:15 +00:00
mode: '0644'
2020-12-11 21:00:14 +00:00
owner: root
2020-12-11 07:39:15 +00:00
group: root