2021-02-01 08:08:26 +00:00
|
|
|
---
|
|
|
|
# Configures an IPA client for the Rocky infrastructure
|
2022-02-12 21:43:09 +00:00
|
|
|
# Define "host" as a hostgroup name or a single host
|
2021-02-01 08:08:26 +00:00
|
|
|
- name: Configure IPA client
|
2023-04-18 05:08:42 +00:00
|
|
|
hosts: ipaclient
|
2021-02-01 08:08:26 +00:00
|
|
|
become: true
|
2022-02-12 21:43:09 +00:00
|
|
|
vars_files:
|
2023-04-19 07:46:15 +00:00
|
|
|
- vars/ipa/common.yml
|
|
|
|
- vars/ipa/ipaclient.yml
|
2021-02-01 08:08:26 +00:00
|
|
|
|
|
|
|
pre_tasks:
|
|
|
|
- name: Check if ansible cannot be run here
|
2022-03-28 01:54:24 +00:00
|
|
|
ansible.builtin.stat:
|
2021-02-01 08:08:26 +00:00
|
|
|
path: /etc/no-ansible
|
|
|
|
register: no_ansible
|
|
|
|
|
|
|
|
- name: Verify if we can run ansible
|
2022-03-28 01:54:24 +00:00
|
|
|
ansible.builtin.assert:
|
2021-02-01 08:08:26 +00:00
|
|
|
that:
|
|
|
|
- "not no_ansible.stat.exists"
|
|
|
|
success_msg: "We are able to run on this node"
|
|
|
|
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
|
|
|
|
|
|
|
- name: Apply hostname based on inventory name
|
|
|
|
hostname:
|
|
|
|
name: "{{ inventory_hostname }}"
|
|
|
|
use: systemd
|
|
|
|
when: ansible_fqdn != inventory_hostname
|
|
|
|
|
|
|
|
roles:
|
|
|
|
- role: freeipa.ansible_freeipa.ipaclient
|
|
|
|
state: present
|
|
|
|
|
|
|
|
post_tasks:
|
|
|
|
- name: Touching run file that ansible has ran here
|
2022-03-28 01:54:24 +00:00
|
|
|
ansible.builtin.file:
|
2021-02-01 08:08:26 +00:00
|
|
|
path: /var/log/ansible.run
|
|
|
|
state: touch
|
|
|
|
mode: '0644'
|
|
|
|
owner: root
|
|
|
|
group: root
|
2022-02-12 21:43:09 +00:00
|
|
|
...
|