File tree Expand file tree Collapse file tree 2 files changed +11
-16
lines changed
environments/.stackhpc/terraform Expand file tree Collapse file tree 2 files changed +11
-16
lines changed Original file line number Diff line number Diff line change 41
41
gather_facts : false
42
42
become : yes
43
43
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
44
52
- name : Prevent ssh hanging if shared home is unavailable
45
53
lineinfile :
46
54
path : /etc/profile
157
165
tags :
158
166
- update
159
167
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
174
168
- block :
175
169
- name : Update selected packages
176
170
yum :
Original file line number Diff line number Diff line change @@ -29,8 +29,9 @@ variable "cluster_image" {
29
29
description = " single image for all cluster nodes, keyed by os_version - a convenience for CI"
30
30
type = map (string )
31
31
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"
34
35
}
35
36
}
36
37
You can’t perform that action at this time.
0 commit comments