FQCN and simple builder
This commit is contained in:
parent
2acf41e6b8
commit
d1850f1ca9
66
init-rocky-simple-builder.yml
Normal file
66
init-rocky-simple-builder.yml
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
---
|
||||||
|
# Basic system configuration. All hardening should also be imported here.
|
||||||
|
# Use --extra-vars="host=..." and specify a hostname in the inventory or
|
||||||
|
# provide an ansible host group name. You can also just use "all" if you
|
||||||
|
# want to ensure all systems are up to date on the configuration.
|
||||||
|
- name: Setup a simple builder system with mock
|
||||||
|
hosts: "{{ host }}"
|
||||||
|
become: true
|
||||||
|
|
||||||
|
# This is to try to avoid the handler issue in pre/post tasks
|
||||||
|
handlers:
|
||||||
|
- name: Import handleers
|
||||||
|
ansible.builtin.import_tasks: handlers/main.yml
|
||||||
|
|
||||||
|
pre_tasks:
|
||||||
|
- name: Check if ansible cannot be run here
|
||||||
|
ansible.builtin.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"
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- name: Install EPEL repository
|
||||||
|
ansible.builtin.dnf:
|
||||||
|
name: epel-release
|
||||||
|
state: present
|
||||||
|
tags:
|
||||||
|
- packages
|
||||||
|
|
||||||
|
- name: Enable the CRB repository
|
||||||
|
community.general.ini_file:
|
||||||
|
dest: /etc/yum.repos.d/rocky.repo
|
||||||
|
section: crb
|
||||||
|
option: enabled
|
||||||
|
value: 1
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: '0644'
|
||||||
|
when: ansible_distribution_major_version|int >= '9'
|
||||||
|
|
||||||
|
- name: Install required builder packages
|
||||||
|
ansible.builtin.dnf:
|
||||||
|
name:
|
||||||
|
- bzip2
|
||||||
|
- glibc-all-langpacks
|
||||||
|
- htop
|
||||||
|
- mock
|
||||||
|
- rpm-build
|
||||||
|
state: latest
|
||||||
|
update_cache: false
|
||||||
|
|
||||||
|
post_tasks:
|
||||||
|
- name: Touching run file that ansible has ran here
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: /var/log/ansible.run
|
||||||
|
state: touch
|
||||||
|
mode: '0644'
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
...
|
@ -4,36 +4,36 @@
|
|||||||
hosts: kojihub
|
hosts: kojihub
|
||||||
become: true
|
become: true
|
||||||
vars_files:
|
vars_files:
|
||||||
- vars/vaults/encpass.yml
|
- vars/vaults/encpass.yml
|
||||||
- vars/common.yml
|
- vars/common.yml
|
||||||
- vars/staging/kojid.yml
|
- vars/staging/kojid.yml
|
||||||
- vars/staging/koji-common.yml
|
- vars/staging/koji-common.yml
|
||||||
|
|
||||||
# This is to try to avoid the handler issue in pre/post tasks
|
# This is to try to avoid the handler issue in pre/post tasks
|
||||||
handlers:
|
handlers:
|
||||||
- import_tasks: handlers/main.yml
|
- ansible.builtin.import_tasks: handlers/main.yml
|
||||||
|
|
||||||
pre_tasks:
|
pre_tasks:
|
||||||
- name: Check if ansible cannot be run here
|
- name: Check if ansible cannot be run here
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/no-ansible
|
path: /etc/no-ansible
|
||||||
register: no_ansible
|
register: no_ansible
|
||||||
|
|
||||||
- name: Verify if we can run ansible
|
- name: Verify if we can run ansible
|
||||||
assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- "not no_ansible.stat.exists"
|
- "not no_ansible.stat.exists"
|
||||||
success_msg: "We are able to run on this node"
|
success_msg: "We are able to run on this node"
|
||||||
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
||||||
|
|
||||||
- name: Check for keytabs - kojid
|
- name: Check for keytabs - kojid
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/kojid.keytab
|
path: /etc/kojid.keytab
|
||||||
register: kojid_keytab_check
|
register: kojid_keytab_check
|
||||||
changed_when: "1 != 1"
|
changed_when: "1 != 1"
|
||||||
|
|
||||||
- name: Verify keytab
|
- name: Verify keytab
|
||||||
assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- "kojid_keytab_check.stat.exists"
|
- "kojid_keytab_check.stat.exists"
|
||||||
success_msg: "It is likely we have all keytabs"
|
success_msg: "It is likely we have all keytabs"
|
||||||
@ -42,7 +42,7 @@
|
|||||||
# EPEL and PowerTools are required for ipsilon to function
|
# EPEL and PowerTools are required for ipsilon to function
|
||||||
# I also couldn't find an ansible built-in to do this
|
# I also couldn't find an ansible built-in to do this
|
||||||
- name: Enable the PowerTools repository
|
- name: Enable the PowerTools repository
|
||||||
ini_file:
|
community.general.ini_file:
|
||||||
dest: /etc/yum.repos.d/Rocky-PowerTools.repo
|
dest: /etc/yum.repos.d/Rocky-PowerTools.repo
|
||||||
section: powertools
|
section: powertools
|
||||||
option: enabled
|
option: enabled
|
||||||
@ -53,7 +53,7 @@
|
|||||||
when: ansible_distribution_major_version == '8'
|
when: ansible_distribution_major_version == '8'
|
||||||
|
|
||||||
- name: Enable the CRB repository
|
- name: Enable the CRB repository
|
||||||
ini_file:
|
community.general.ini_file:
|
||||||
dest: /etc/yum.repos.d/rocky.repo
|
dest: /etc/yum.repos.d/rocky.repo
|
||||||
section: crb
|
section: crb
|
||||||
option: enabled
|
option: enabled
|
||||||
@ -64,14 +64,14 @@
|
|||||||
when: ansible_distribution_major_version|int >= '9'
|
when: ansible_distribution_major_version|int >= '9'
|
||||||
|
|
||||||
- name: Enable the EPEL repository
|
- name: Enable the EPEL repository
|
||||||
yum:
|
ansible.builtin.dnf:
|
||||||
name: epel-release
|
name: epel-release
|
||||||
state: present
|
state: present
|
||||||
tags:
|
tags:
|
||||||
- packages
|
- packages
|
||||||
|
|
||||||
- name: Install rocky-tools copr
|
- name: Install rocky-tools copr
|
||||||
yum_repository:
|
ansible.builtin.yum_repository:
|
||||||
name: copr:copr.fedorainfracloud.org:nalika:rockylinux-tool
|
name: copr:copr.fedorainfracloud.org:nalika:rockylinux-tool
|
||||||
description: Copr repo for rockylinux-tools owned by nalika
|
description: Copr repo for rockylinux-tools owned by nalika
|
||||||
file: copr_repos
|
file: copr_repos
|
||||||
@ -90,7 +90,7 @@
|
|||||||
|
|
||||||
post_tasks:
|
post_tasks:
|
||||||
- name: "Setup shared filesystem mount"
|
- name: "Setup shared filesystem mount"
|
||||||
import_tasks: tasks/koji_efs.yml
|
ansible.builtin.import_tasks: tasks/koji_efs.yml
|
||||||
|
|
||||||
- name: Touching run file that ansible has ran here
|
- name: Touching run file that ansible has ran here
|
||||||
file:
|
file:
|
||||||
|
@ -4,36 +4,36 @@
|
|||||||
hosts: kojihub
|
hosts: kojihub
|
||||||
become: true
|
become: true
|
||||||
vars_files:
|
vars_files:
|
||||||
- vars/vaults/encpass.yml
|
- vars/vaults/encpass.yml
|
||||||
- vars/common.yml
|
- vars/common.yml
|
||||||
- vars/production/kojid.yml
|
- vars/production/kojid.yml
|
||||||
- vars/production/koji-common.yml
|
- vars/production/koji-common.yml
|
||||||
|
|
||||||
# This is to try to avoid the handler issue in pre/post tasks
|
# This is to try to avoid the handler issue in pre/post tasks
|
||||||
handlers:
|
handlers:
|
||||||
- import_tasks: handlers/main.yml
|
- ansible.builtin.import_tasks: handlers/main.yml
|
||||||
|
|
||||||
pre_tasks:
|
pre_tasks:
|
||||||
- name: Check if ansible cannot be run here
|
- name: Check if ansible cannot be run here
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/no-ansible
|
path: /etc/no-ansible
|
||||||
register: no_ansible
|
register: no_ansible
|
||||||
|
|
||||||
- name: Verify if we can run ansible
|
- name: Verify if we can run ansible
|
||||||
assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- "not no_ansible.stat.exists"
|
- "not no_ansible.stat.exists"
|
||||||
success_msg: "We are able to run on this node"
|
success_msg: "We are able to run on this node"
|
||||||
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
||||||
|
|
||||||
- name: Check for keytabs - kojid
|
- name: Check for keytabs - kojid
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/kojid.keytab
|
path: /etc/kojid.keytab
|
||||||
register: kojid_keytab_check
|
register: kojid_keytab_check
|
||||||
changed_when: "1 != 1"
|
changed_when: "1 != 1"
|
||||||
|
|
||||||
- name: Verify keytab
|
- name: Verify keytab
|
||||||
assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- "kojid_keytab_check.stat.exists"
|
- "kojid_keytab_check.stat.exists"
|
||||||
success_msg: "It is likely we have all keytabs"
|
success_msg: "It is likely we have all keytabs"
|
||||||
@ -42,7 +42,7 @@
|
|||||||
# EPEL and PowerTools are required for ipsilon to function
|
# EPEL and PowerTools are required for ipsilon to function
|
||||||
# I also couldn't find an ansible built-in to do this
|
# I also couldn't find an ansible built-in to do this
|
||||||
- name: Enable the PowerTools repository
|
- name: Enable the PowerTools repository
|
||||||
ini_file:
|
community.general.ini_file:
|
||||||
dest: /etc/yum.repos.d/Rocky-PowerTools.repo
|
dest: /etc/yum.repos.d/Rocky-PowerTools.repo
|
||||||
section: powertools
|
section: powertools
|
||||||
option: enabled
|
option: enabled
|
||||||
@ -53,7 +53,7 @@
|
|||||||
when: ansible_distribution_major_version == '8'
|
when: ansible_distribution_major_version == '8'
|
||||||
|
|
||||||
- name: Enable the CRB repository
|
- name: Enable the CRB repository
|
||||||
ini_file:
|
community.general.ini_file:
|
||||||
dest: /etc/yum.repos.d/rocky.repo
|
dest: /etc/yum.repos.d/rocky.repo
|
||||||
section: crb
|
section: crb
|
||||||
option: enabled
|
option: enabled
|
||||||
@ -64,14 +64,14 @@
|
|||||||
when: ansible_distribution_major_version|int >= '9'
|
when: ansible_distribution_major_version|int >= '9'
|
||||||
|
|
||||||
- name: Enable the EPEL repository
|
- name: Enable the EPEL repository
|
||||||
yum:
|
ansible.builtin.dnf:
|
||||||
name: epel-release
|
name: epel-release
|
||||||
state: present
|
state: present
|
||||||
tags:
|
tags:
|
||||||
- packages
|
- packages
|
||||||
|
|
||||||
- name: Install rocky-tools copr
|
- name: Install rocky-tools copr
|
||||||
yum_repository:
|
ansible.builtin.yum_repository:
|
||||||
name: copr:copr.fedorainfracloud.org:nalika:rockylinux-tool
|
name: copr:copr.fedorainfracloud.org:nalika:rockylinux-tool
|
||||||
description: Copr repo for rockylinux-tools owned by nalika
|
description: Copr repo for rockylinux-tools owned by nalika
|
||||||
file: copr_repos
|
file: copr_repos
|
||||||
@ -90,7 +90,7 @@
|
|||||||
|
|
||||||
post_tasks:
|
post_tasks:
|
||||||
- name: "Setup shared filesystem mount"
|
- name: "Setup shared filesystem mount"
|
||||||
import_tasks: tasks/koji_efs.yml
|
ansible.builtin.import_tasks: tasks/koji_efs.yml
|
||||||
|
|
||||||
- name: Touching run file that ansible has ran here
|
- name: Touching run file that ansible has ran here
|
||||||
file:
|
file:
|
||||||
|
@ -11,47 +11,47 @@
|
|||||||
|
|
||||||
# This is to try to avoid the handler issue in pre/post tasks
|
# This is to try to avoid the handler issue in pre/post tasks
|
||||||
handlers:
|
handlers:
|
||||||
- import_tasks: handlers/main.yml
|
- ansible.builtin.import_tasks: handlers/main.yml
|
||||||
|
|
||||||
pre_tasks:
|
pre_tasks:
|
||||||
- name: Check if ansible cannot be run here
|
- name: Check if ansible cannot be run here
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/no-ansible
|
path: /etc/no-ansible
|
||||||
register: no_ansible
|
register: no_ansible
|
||||||
|
|
||||||
- name: Verify if we can run ansible
|
- name: Verify if we can run ansible
|
||||||
assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- "not no_ansible.stat.exists"
|
- "not no_ansible.stat.exists"
|
||||||
success_msg: "We are able to run on this node"
|
success_msg: "We are able to run on this node"
|
||||||
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
||||||
|
|
||||||
- name: Check for keytabs - web
|
- name: Check for keytabs - web
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/keytabs/koji-web.keytab
|
path: /etc/keytabs/koji-web.keytab
|
||||||
register: koji_keytab
|
register: koji_keytab
|
||||||
changed_when: "1 != 1"
|
changed_when: "1 != 1"
|
||||||
|
|
||||||
- name: Check for keytabs - kojira
|
- name: Check for keytabs - kojira
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/keytabs/kojira.keytab
|
path: /etc/keytabs/kojira.keytab
|
||||||
register: kojira_keytab
|
register: kojira_keytab
|
||||||
changed_when: "1 != 1"
|
changed_when: "1 != 1"
|
||||||
|
|
||||||
- name: Check for keytabs - gc
|
- name: Check for keytabs - gc
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/keytabs/koji-gc.keytab
|
path: /etc/keytabs/koji-gc.keytab
|
||||||
register: gc_keytab
|
register: gc_keytab
|
||||||
changed_when: "1 != 1"
|
changed_when: "1 != 1"
|
||||||
|
|
||||||
- name: Check for keytabs - host
|
- name: Check for keytabs - host
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/keytabs/host.keytab
|
path: /etc/keytabs/host.keytab
|
||||||
register: host_keytab
|
register: host_keytab
|
||||||
changed_when: "1 != 1"
|
changed_when: "1 != 1"
|
||||||
|
|
||||||
- name: Verify keytab
|
- name: Verify keytab
|
||||||
assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- "koji_keytab.stat.exists"
|
- "koji_keytab.stat.exists"
|
||||||
- "kojira_keytab.stat.exists"
|
- "kojira_keytab.stat.exists"
|
||||||
@ -63,7 +63,7 @@
|
|||||||
# EPEL and PowerTools are required for ipsilon to function
|
# EPEL and PowerTools are required for ipsilon to function
|
||||||
# I also couldn't find an ansible built-in to do this
|
# I also couldn't find an ansible built-in to do this
|
||||||
- name: Enable the PowerTools repository
|
- name: Enable the PowerTools repository
|
||||||
ini_file:
|
community.general.ini_file:
|
||||||
dest: /etc/yum.repos.d/Rocky-PowerTools.repo
|
dest: /etc/yum.repos.d/Rocky-PowerTools.repo
|
||||||
section: powertools
|
section: powertools
|
||||||
option: enabled
|
option: enabled
|
||||||
@ -74,7 +74,7 @@
|
|||||||
when: ansible_distribution_major_version == '8'
|
when: ansible_distribution_major_version == '8'
|
||||||
|
|
||||||
- name: Enable the CRB repository
|
- name: Enable the CRB repository
|
||||||
ini_file:
|
community.general.ini_file:
|
||||||
dest: /etc/yum.repos.d/rocky.repo
|
dest: /etc/yum.repos.d/rocky.repo
|
||||||
section: crb
|
section: crb
|
||||||
option: enabled
|
option: enabled
|
||||||
@ -85,14 +85,14 @@
|
|||||||
when: ansible_distribution_major_version|int >= '9'
|
when: ansible_distribution_major_version|int >= '9'
|
||||||
|
|
||||||
- name: Enable the EPEL repository
|
- name: Enable the EPEL repository
|
||||||
yum:
|
ansible.builtin.dnf:
|
||||||
name: epel-release
|
name: epel-release
|
||||||
state: present
|
state: present
|
||||||
tags:
|
tags:
|
||||||
- packages
|
- packages
|
||||||
|
|
||||||
- name: Install rocky-tools copr
|
- name: Install rocky-tools copr
|
||||||
yum_repository:
|
ansible.builtin.yum_repository:
|
||||||
name: copr:copr.fedorainfracloud.org:nalika:rockylinux-tool
|
name: copr:copr.fedorainfracloud.org:nalika:rockylinux-tool
|
||||||
description: Copr repo for rockylinux-tools owned by nalika
|
description: Copr repo for rockylinux-tools owned by nalika
|
||||||
file: copr_repos
|
file: copr_repos
|
||||||
@ -123,7 +123,7 @@
|
|||||||
|
|
||||||
post_tasks:
|
post_tasks:
|
||||||
- name: "Setup shared filesystem mount"
|
- name: "Setup shared filesystem mount"
|
||||||
import_tasks: tasks/koji_efs.yml
|
ansible.builtin.import_tasks: tasks/koji_efs.yml
|
||||||
|
|
||||||
- name: Touching run file that ansible has ran here
|
- name: Touching run file that ansible has ran here
|
||||||
file:
|
file:
|
||||||
|
@ -11,47 +11,47 @@
|
|||||||
|
|
||||||
# This is to try to avoid the handler issue in pre/post tasks
|
# This is to try to avoid the handler issue in pre/post tasks
|
||||||
handlers:
|
handlers:
|
||||||
- import_tasks: handlers/main.yml
|
- ansible.builtin.import_tasks: handlers/main.yml
|
||||||
|
|
||||||
pre_tasks:
|
pre_tasks:
|
||||||
- name: Check if ansible cannot be run here
|
- name: Check if ansible cannot be run here
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/no-ansible
|
path: /etc/no-ansible
|
||||||
register: no_ansible
|
register: no_ansible
|
||||||
|
|
||||||
- name: Verify if we can run ansible
|
- name: Verify if we can run ansible
|
||||||
assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- "not no_ansible.stat.exists"
|
- "not no_ansible.stat.exists"
|
||||||
success_msg: "We are able to run on this node"
|
success_msg: "We are able to run on this node"
|
||||||
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
||||||
|
|
||||||
- name: Check for keytabs - web
|
- name: Check for keytabs - web
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/keytabs/koji-web.keytab
|
path: /etc/keytabs/koji-web.keytab
|
||||||
register: koji_keytab
|
register: koji_keytab
|
||||||
changed_when: "1 != 1"
|
changed_when: "1 != 1"
|
||||||
|
|
||||||
- name: Check for keytabs - kojira
|
- name: Check for keytabs - kojira
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/keytabs/kojira.keytab
|
path: /etc/keytabs/kojira.keytab
|
||||||
register: kojira_keytab
|
register: kojira_keytab
|
||||||
changed_when: "1 != 1"
|
changed_when: "1 != 1"
|
||||||
|
|
||||||
- name: Check for keytabs - gc
|
- name: Check for keytabs - gc
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/keytabs/koji-gc.keytab
|
path: /etc/keytabs/koji-gc.keytab
|
||||||
register: gc_keytab
|
register: gc_keytab
|
||||||
changed_when: "1 != 1"
|
changed_when: "1 != 1"
|
||||||
|
|
||||||
- name: Check for keytabs - host
|
- name: Check for keytabs - host
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: /etc/keytabs/host.keytab
|
path: /etc/keytabs/host.keytab
|
||||||
register: host_keytab
|
register: host_keytab
|
||||||
changed_when: "1 != 1"
|
changed_when: "1 != 1"
|
||||||
|
|
||||||
- name: Verify keytab
|
- name: Verify keytab
|
||||||
assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- "koji_keytab.stat.exists"
|
- "koji_keytab.stat.exists"
|
||||||
- "kojira_keytab.stat.exists"
|
- "kojira_keytab.stat.exists"
|
||||||
@ -63,7 +63,7 @@
|
|||||||
# EPEL and PowerTools are required for ipsilon to function
|
# EPEL and PowerTools are required for ipsilon to function
|
||||||
# I also couldn't find an ansible built-in to do this
|
# I also couldn't find an ansible built-in to do this
|
||||||
- name: Enable the PowerTools repository
|
- name: Enable the PowerTools repository
|
||||||
ini_file:
|
community.general.ini_file:
|
||||||
dest: /etc/yum.repos.d/Rocky-PowerTools.repo
|
dest: /etc/yum.repos.d/Rocky-PowerTools.repo
|
||||||
section: powertools
|
section: powertools
|
||||||
option: enabled
|
option: enabled
|
||||||
@ -74,7 +74,7 @@
|
|||||||
when: ansible_distribution_major_version == '8'
|
when: ansible_distribution_major_version == '8'
|
||||||
|
|
||||||
- name: Enable the CRB repository
|
- name: Enable the CRB repository
|
||||||
ini_file:
|
community.general.ini_file:
|
||||||
dest: /etc/yum.repos.d/rocky.repo
|
dest: /etc/yum.repos.d/rocky.repo
|
||||||
section: crb
|
section: crb
|
||||||
option: enabled
|
option: enabled
|
||||||
@ -85,14 +85,14 @@
|
|||||||
when: ansible_distribution_major_version|int >= '9'
|
when: ansible_distribution_major_version|int >= '9'
|
||||||
|
|
||||||
- name: Enable the EPEL repository
|
- name: Enable the EPEL repository
|
||||||
yum:
|
ansible.builtin.dnf:
|
||||||
name: epel-release
|
name: epel-release
|
||||||
state: present
|
state: present
|
||||||
tags:
|
tags:
|
||||||
- packages
|
- packages
|
||||||
|
|
||||||
- name: Install rocky-tools copr
|
- name: Install rocky-tools copr
|
||||||
yum_repository:
|
ansible.builtin.yum_repository:
|
||||||
name: copr:copr.fedorainfracloud.org:nalika:rockylinux-tool
|
name: copr:copr.fedorainfracloud.org:nalika:rockylinux-tool
|
||||||
description: Copr repo for rockylinux-tools owned by nalika
|
description: Copr repo for rockylinux-tools owned by nalika
|
||||||
file: copr_repos
|
file: copr_repos
|
||||||
@ -123,7 +123,7 @@
|
|||||||
|
|
||||||
post_tasks:
|
post_tasks:
|
||||||
- name: "Setup shared filesystem mount"
|
- name: "Setup shared filesystem mount"
|
||||||
import_tasks: tasks/koji_efs.yml
|
ansible.builtin.import_tasks: tasks/koji_efs.yml
|
||||||
|
|
||||||
- name: Touching run file that ansible has ran here
|
- name: Touching run file that ansible has ran here
|
||||||
file:
|
file:
|
||||||
|
Loading…
Reference in New Issue
Block a user