-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathomd-labs.yml
More file actions
28 lines (25 loc) · 768 Bytes
/
omd-labs.yml
File metadata and controls
28 lines (25 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
- hosts: rhel8
tasks:
# https://labs.consol.de/repo/stable/#_8
- name: Install labs-consol-stable
shell: |
rpm -Uvh https://labs.consol.de/repo/stable/rhel8/i386/labs-consol-stable.rhel8.noarch.rpm
args:
creates: /etc/yum.repos.d/labs-consol-stable.repo
become: true
# Workaround "nothing provides perl(Digest::SHA1)"
- name: Enable codeready-builder-for-rhel-8-x86_64-rpms
shell: |
subscription-manager repos --enable codeready-builder-for-rhel-8-x86_64-rpms
become: true
- name: Install omd
dnf:
name: omd
become: true
- ansible.posix.firewalld:
service: https
state: enabled
permanent: true
immediate: true
become: true