2020-12-10 07:33:09 +00:00
|
|
|
---
|
2020-12-10 07:42:05 +00:00
|
|
|
# Configures an IPA client for the Rocky infrastructure
|
2021-01-10 04:47:18 +00:00
|
|
|
# Define "host" as a hostgroup name or a single host
|
2020-12-10 07:33:09 +00:00
|
|
|
- name: Configure IPA client
|
2021-01-10 04:47:18 +00:00
|
|
|
hosts: "{{ host }}"
|
2020-12-10 07:33:09 +00:00
|
|
|
become: true
|
|
|
|
vars_files:
|
2021-01-03 05:18:47 +00:00
|
|
|
- vars/vaults/encpass.yml
|
|
|
|
- vars/ipa/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"
|
2021-01-02 03:14:24 +00:00
|
|
|
success_msg: "We are able to run on this node"
|
|
|
|
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
2020-12-10 07:33:09 +00:00
|
|
|
|
2021-01-17 20:04:57 +00:00
|
|
|
- name: Apply hostname based on inventory name
|
|
|
|
hostname:
|
|
|
|
name: "{{ inventory_hostname }}"
|
|
|
|
use: systemd
|
|
|
|
when: ansible_fqdn != inventory_hostname
|
|
|
|
|
2020-12-10 07:33:09 +00:00
|
|
|
roles:
|
2020-12-14 23:33:16 +00:00
|
|
|
- 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
|
2021-08-30 05:02:24 +00:00
|
|
|
...
|