Skip to content

Commit 5b60770

Browse files
committed
merge conflicts
2 parents 127b792 + 4de581c commit 5b60770

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

environments/.stackhpc/hooks/post.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,15 @@
1212
- "/opt/ood/ondemand/root/usr/share/gems/3.1/ondemand/{{ ondemand_package_version }}-1/gems/bootstrap_form-2.7.0/test/dummy/Gemfile.lock"
1313
- "/opt/ood/ondemand/root/usr/share/gems/3.1/ondemand/{{ ondemand_package_version }}-1/gems/bootstrap_form-4.5.0/demo/yarn.lock"
1414
- /var/www/ood/apps/sys/dashboard/node_modules/data-confirm-modal/Gemfile.lock
15+
<<<<<<< HEAD
16+
=======
17+
18+
- hosts: builder
19+
become: yes
20+
tasks:
21+
- name: Disable ark repos
22+
ansible.builtin.include_role:
23+
name: dnf_repos
24+
tasks_from: disable_repos.yml
25+
when: ansible_distribution_major_version == "9" #TODO update role once RL8 config decided
26+
>>>>>>> main

environments/.stackhpc/hooks/pre.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,12 @@
1717
- "{{ lookup('env', 'APPLIANCES_ENVIRONMENT_ROOT') }}/inventory/hosts.yml"
1818
- "{{ lookup('env', 'APPLIANCES_ENVIRONMENT_ROOT') }}/inventory/group_vars/all/secrets.yml"
1919
- "{{ lookup('env', 'APPLIANCES_ENVIRONMENT_ROOT') }}/inventory/group_vars/all/test_user.yml"
20+
21+
- hosts: builder
22+
become: yes
23+
tasks:
24+
- name: Replace system repos with ark
25+
ansible.builtin.include_role:
26+
name: dnf_repos
27+
tasks_from: set_repos.yml
28+
when: ansible_distribution_major_version == "9" #TODO update role once RL8 config decided
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
11
openhpc_config_extra:
22
SlurmctldDebug: debug
33
SlurmdDebug: debug
4+
5+
ohpc_default_extra_repos:
6+
"9": [] #overriding to ensure doesn't overwrite ark epel repo
7+
"8":
8+
- name: epel
9+
file: epel
10+
description: "Extra Packages for Enterprise Linux 8 - $basearch"
11+
metalink: "https://mirrors.fedoraproject.org/metalink?repo=epel-8&arch=$basearch&infra=$infra&content=$contentdir"
12+
gpgcheck: true
13+
gpgkey: "https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8"

0 commit comments

Comments
 (0)