mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-11 00:11:25 +00:00
34 lines
761 B
YAML
34 lines
761 B
YAML
---
|
|
# Configures an IPA client for the Rocky infrastructure
|
|
# Variables are in inventory/ipainventory
|
|
- 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
|
|
mode: '0644'
|
|
user: root
|
|
group: root
|