73 lines
1.9 KiB
YAML
73 lines
1.9 KiB
YAML
---
|
|
# MirrorManager2
|
|
- name: Install and configure mirrormanager
|
|
hosts: all
|
|
become: false
|
|
vars_files:
|
|
# This playbook requires vaults!
|
|
# vars/vaults/hostman.yml
|
|
# vars/vaults/mirrormanager.yml
|
|
- vars/mounts/mirrormanager.yml
|
|
- vars/mirrormanager.yml
|
|
|
|
# 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
|
|
stat:
|
|
path: /etc/no-ansible
|
|
register: no_ansible
|
|
|
|
- name: Verify if we can run ansible
|
|
ansible.builtin.assert:
|
|
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: Install git
|
|
become: true
|
|
ansible.builtin.package:
|
|
name: git
|
|
state: present
|
|
|
|
- name: Install SELinux packages
|
|
become: true
|
|
ansible.builtin.package:
|
|
name: python3-policycoreutils.noarch
|
|
state: present
|
|
|
|
tasks:
|
|
#- include_tasks: tasks/mirrormanager.yml
|
|
- include_tasks: tasks/efs_mount.yml
|
|
loop: "{{ mounts }}"
|
|
tags: ["mounts"]
|
|
|
|
roles:
|
|
- role: rockylinux.ipagetcert
|
|
become: true
|
|
state: present
|
|
tags: ['certs']
|
|
|
|
post_tasks:
|
|
- name: Open firewalld ports
|
|
become: true
|
|
ansible.posix.firewalld:
|
|
port: "{{ item.port }}"
|
|
permanent: "{{ item.permanent }}"
|
|
state: "{{ item.state }}"
|
|
immediate: yes
|
|
loop: "{{ firewall_rules }}"
|
|
|
|
- name: Touching run file that ansible has ran here
|
|
become: true
|
|
ansible.builtin.file:
|
|
path: /var/log/ansible.run
|
|
state: touch
|
|
mode: '0644'
|
|
owner: root
|
|
group: root
|
|
...
|