mono-infrastructure/ansible/role-rocky-ipa-client.yml
2020-12-10 00:33:09 -07:00

31 lines
601 B
YAML

---
- name: Configure IPA client
hosts: ipaclients
become: true
vars_files:
- vars/encpass.yml
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"
roles:
- role: ipaclient
state: present
post_tasks:
- name: Touching run file that ansible has ran here
file:
path: /var/log/ansible.run
state: touch