mono-infrastructure/ansible/playbooks/role-rocky-ipa-replica.yml

64 lines
1.4 KiB
YAML
Raw Normal View History

2020-12-10 07:33:09 +00:00
---
2020-12-10 07:42:05 +00:00
# Creates an IPA replica
2020-12-10 07:33:09 +00:00
- name: Configure IPA server
hosts: ipareplicas
become: true
vars_files:
- vars/encpass.yml
2020-12-10 23:11:41 +00:00
# This is to try to avoid the handler issue in pre/post tasks
handlers:
- 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"
msg: "/etc/no-ansible exists - skipping run on this node"
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
- name: Ensure resolv.conf is pointing to main master
template:
2020-12-10 19:26:11 +00:00
src: etc/resolv.conf.j2
2020-12-10 08:43:19 +00:00
dest: /etc/resolv.conf
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:
- 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