Skip to content

Commit c83ea12

Browse files
authored
Revert to base ssh repos (#410)
* revert to base ssh repos * fix Rocky-9-GenericCloud-Base-9.4-20240523.0.x86_64.qcow2 /etc permissions * bump CI image
1 parent 4ef845b commit c83ea12

File tree

2 files changed

+11
-16
lines changed

2 files changed

+11
-16
lines changed

ansible/bootstrap.yml

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@
4141
gather_facts: false
4242
become: yes
4343
tasks:
44+
- name: Fix incorrect permissions on /etc in Rocky-9-GenericCloud-Base-9.4-20240523.0.x86_64.qcow2
45+
# breaks munge
46+
file:
47+
path: /etc
48+
state: directory
49+
owner: root
50+
group: root
51+
mode: u=rwx,go=rx # has g=rwx
4452
- name: Prevent ssh hanging if shared home is unavailable
4553
lineinfile:
4654
path: /etc/profile
@@ -157,20 +165,6 @@
157165
tags:
158166
- update
159167
tasks:
160-
- name: Install SIG/security release repo
161-
dnf:
162-
name: rocky-release-security
163-
- name: Update openssh
164-
dnf:
165-
name:
166-
- openssh
167-
- openssh-askpass
168-
- openssh-clients
169-
- openssh-server
170-
state: latest
171-
update_only: true
172-
enablerepo:
173-
- security-common
174168
- block:
175169
- name: Update selected packages
176170
yum:

environments/.stackhpc/terraform/main.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ variable "cluster_image" {
2929
description = "single image for all cluster nodes, keyed by os_version - a convenience for CI"
3030
type = map(string)
3131
default = {
32-
RL8: "openhpc-RL8-240619-0949-66c0e540" # https://github.com/stackhpc/ansible-slurm-appliance/pull/399
33-
RL9: "openhpc-ofed-RL9-240621-1308-96959324" # https://github.com/stackhpc/ansible-slurm-appliance/pull/401
32+
# https://github.com/stackhpc/ansible-slurm-appliance/pull/410
33+
RL8: "openhpc-RL8-240712-1426-6830f97b"
34+
RL9: "openhpc-ofed-RL9-240712-1425-6830f97b"
3435
}
3536
}
3637

0 commit comments

Comments
 (0)