ansible-ipa-management/role-rocky-ipa-replica.yml

49 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2021-02-01 08:08:26 +00:00
---
# Creates an IPA replica
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 server
2023-04-22 05:42:40 +00:00
hosts: ipareplicas
2021-02-01 08:08:26 +00:00
become: true
2023-04-18 05:51:55 +00:00
vars_files:
2023-04-19 07:46:15 +00:00
- vars/ipa/common.yml
2023-04-18 05:51:55 +00:00
- vars/ipa/ipareplica.yml
collections:
- freeipa.ansible_freeipa
2021-02-01 08:08:26 +00:00
# This is to try to avoid the handler issue in pre/post tasks
handlers:
- import_tasks: handlers/main.yml
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"
2023-04-22 07:58:06 +00:00
- name: Perform domain pre-work
ansible.builtin.import_tasks: tasks/domain-prework.yml
2023-04-19 02:00:35 +00:00
2021-02-01 08:08:26 +00:00
roles:
- role: freeipa.ansible_freeipa.ipareplica
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
2023-04-19 07:46:15 +00:00
- name: Configure recursion for private nets
2023-04-22 07:58:06 +00:00
ansible.builtin.import_tasks: tasks/dns-ext.yml
2022-02-12 21:43:09 +00:00
...