We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e75b57 commit ac6a2deCopy full SHA for ac6a2de
molecule/default/prepare.yml
@@ -1,4 +1,13 @@
1
---
2
- name: Prepare
3
hosts: all
4
- tasks: []
+ tasks:
5
+ - name: Install DNF plugins core
6
+ ansible.builtin.dnf:
7
+ name: dnf-plugins-core
8
+ state: present
9
+ when: ansible_distribution == "Rocky" and ansible_distribution_major_version|int >= 9
10
+
11
+ - name: Enable CRB repository
12
+ ansible.builtin.command: dnf config-manager --enable crb
13
0 commit comments