2020-12-10 07:33:09 +00:00
|
|
|
---
|
2020-12-10 07:42:05 +00:00
|
|
|
# Creates an IPA replica
|
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 server
|
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
|
2020-12-10 07:33:09 +00:00
|
|
|
|
2020-12-10 23:11:41 +00:00
|
|
|
# This is to try to avoid the handler issue in pre/post tasks
|
|
|
|
handlers:
|
2020-12-13 11:54:31 +00:00
|
|
|
- import_tasks: handlers/main.yml
|
2020-12-10 23:11:41 +00:00
|
|
|
|
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
|
|
|
|
2020-12-10 08:43:19 +00:00
|
|
|
- name: Ensure 'dns=none' is set for Network Manager
|
|
|
|
ini_file:
|
|
|
|
path: /etc/NetworkManager/NetworkManager.conf
|
|
|
|
state: present
|
2020-12-11 07:39:15 +00:00
|
|
|
no_extra_spaces: true
|
2020-12-10 08:43:19 +00:00
|
|
|
section: main
|
|
|
|
option: dns
|
|
|
|
value: none
|
|
|
|
owner: root
|
|
|
|
group: root
|
2020-12-11 23:07:58 +00:00
|
|
|
mode: '0644'
|
2020-12-11 07:39:15 +00:00
|
|
|
backup: true
|
2020-12-10 08:43:19 +00:00
|
|
|
notify:
|
|
|
|
- reload_networkmanager
|
|
|
|
|
2020-12-10 07:33:09 +00:00
|
|
|
roles:
|
2020-12-14 23:33:16 +00:00
|
|
|
- role: freeipa.ansible_freeipa.ipareplica
|
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
|
|
|
...
|