File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -112,6 +112,9 @@ ohpc_default_extra_repos:
112
112
gpgcheck : true
113
113
gpgkey : " https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8"
114
114
115
+ # Concatenate extra repo definitions here
116
+ ohpc_extra_repos : " {{ ohpc_default_extra_repos[ansible_distribution_major_version] + openhpc_extra_repos }}"
117
+
115
118
openhpc_munge_key :
116
119
openhpc_login_only_nodes : ' '
117
120
openhpc_module_system_install : true # only works for install-ohpc.yml/main.yml
Original file line number Diff line number Diff line change 10
10
11
11
- name : Ensure extra repos
12
12
ansible.builtin.yum_repository : " {{ item }}" # noqa: args[module]
13
- loop : " {{ openhpc_extra_repos }}"
13
+ loop : " {{ ohpc_extra_repos }}" # NB this gets required ones for OpenHPC too
14
14
loop_control :
15
15
label : " {{ item.name }}"
16
16
You can’t perform that action at this time.
0 commit comments