CI: Replace devel RHEL 9.7 and 10.1 remotes with 9.8 and 10.2 (#1291)

* Replace devel RHEL 9.7 and 10.1 remotes with 9.8 and 10.2.

* Try to work around problem with podman setup.
This commit is contained in:
Felix Fontein
2026-06-25 06:48:03 +02:00
committed by GitHub
parent 0a81e84087
commit 2e542d4e52
3 changed files with 23 additions and 23 deletions
@@ -57,7 +57,7 @@
ansible.builtin.systemd_service:
name: "{{ podman_socket_service }}"
state: started
scope: "{{ 'global' if podman_user_id.stdout == '0' and ansible_facts.os_family == 'RedHat' and (ansible_facts.distribution_major_version | int < 10) else 'user' }}"
scope: "{{ 'global' if podman_user_id.stdout == '0' and ansible_facts.os_family == 'RedHat' and (ansible_facts.distribution_version is version('9.8', '<')) else 'user' }}"
environment:
XDG_RUNTIME_DIR: "{{ '/run' if podman_user_id.stdout == '0' else ('/run/user/' ~ podman_user_id.stdout) }}"