Skip to content

Commit

Permalink
Revert to base ssh repos (#410)
Browse files Browse the repository at this point in the history
* revert to base ssh repos

* fix Rocky-9-GenericCloud-Base-9.4-20240523.0.x86_64.qcow2 /etc permissions

* bump CI image
  • Loading branch information
sjpb authored Jul 16, 2024
1 parent 4ef845b commit c83ea12
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 16 deletions.
22 changes: 8 additions & 14 deletions ansible/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@
gather_facts: false
become: yes
tasks:
- name: Fix incorrect permissions on /etc in Rocky-9-GenericCloud-Base-9.4-20240523.0.x86_64.qcow2
# breaks munge
file:
path: /etc
state: directory
owner: root
group: root
mode: u=rwx,go=rx # has g=rwx
- name: Prevent ssh hanging if shared home is unavailable
lineinfile:
path: /etc/profile
Expand Down Expand Up @@ -157,20 +165,6 @@
tags:
- update
tasks:
- name: Install SIG/security release repo
dnf:
name: rocky-release-security
- name: Update openssh
dnf:
name:
- openssh
- openssh-askpass
- openssh-clients
- openssh-server
state: latest
update_only: true
enablerepo:
- security-common
- block:
- name: Update selected packages
yum:
Expand Down
5 changes: 3 additions & 2 deletions environments/.stackhpc/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ variable "cluster_image" {
description = "single image for all cluster nodes, keyed by os_version - a convenience for CI"
type = map(string)
default = {
RL8: "openhpc-RL8-240619-0949-66c0e540" # https://github.com/stackhpc/ansible-slurm-appliance/pull/399
RL9: "openhpc-ofed-RL9-240621-1308-96959324" # https://github.com/stackhpc/ansible-slurm-appliance/pull/401
# https://github.com/stackhpc/ansible-slurm-appliance/pull/410
RL8: "openhpc-RL8-240712-1426-6830f97b"
RL9: "openhpc-ofed-RL9-240712-1425-6830f97b"
}
}

Expand Down

0 comments on commit c83ea12

Please sign in to comment.