Skip to content

Commit 75cde55

Browse files
Fix DNF again
1 parent 2e1d7c9 commit 75cde55

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

etc/kayobe/dnf.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ dnf_custom_repos: "{{ stackhpc_dnf_repos if stackhpc_repos_enabled | bool else [
4747
# To use these repos, set stackhpc_repos_enabled to true.
4848
# This is done by default for hosts in the overcloud group via a group_vars
4949
# file.
50-
stackhpc_dnf_repos: "{{ dnf_custom_repos_el9 | combine(dnf_custom_repos_rocky_9) | combine(dnf_custom_repos_elrepo_9 if dnf_install_elrepo_9 | bool | combine(dnf_custom_repos_ofed if dnf_install_rocky_ofed) | bool else {}) }}"
50+
stackhpc_dnf_repos: "{{ dnf_custom_repos_el9 | combine(dnf_custom_repos_rocky_9) | combine(dnf_custom_repos_elrepo_9 if dnf_install_elrepo_9 | bool else {}) | combine(dnf_custom_repos_ofed if dnf_install_rocky_ofed | bool else {}) }}"
5151

5252
# OFED repository for Rocky 9
5353
dnf_custom_repos_ofed:
@@ -143,6 +143,9 @@ dnf_enable_epel: "{{ dnf_install_epel | bool }}"
143143
# Whether to enable the ELRepo repository. This affects RedHat-based, 9.x release systems only.
144144
dnf_enable_elrepo_9: "{{ dnf_install_elrepo_9 | bool }}"
145145

146+
# Whether to enable OFED repositories. This affects RedHat-based systems only.
147+
dnf_enable_rocky_ofed: "{{ dnf_install_rocky_ofed | bool }}"
148+
146149
# URL of EPEL GPG keys.
147150
dnf_epel_9_gpg_key_url: "https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-9"
148151

@@ -163,9 +166,6 @@ dnf_enable_docker: true
163166
#URL of docker repo GPG key
164167
dnf_docker_gpg_key_url: "https://download.docker.com/linux/centos/gpg"
165168

166-
# Whether to enable OFED repositories. This affects RedHat-based systems only.
167-
dnf_enable_rocky_ofed: false
168-
169169
# Whether to create a repo file for OFED. This affects RedHat-based
170170
# systems only.
171171
dnf_install_rocky_ofed: false

0 commit comments

Comments
 (0)