Skip to content

Commit 6132913

Browse files
committed
(maint) Install systemd on fedora for container task testing
The pr_testing_with_nested_vms workflow was passing for Fedora 42 as of 2025-06-27, but stopped some time after. From the last successful log, systemd was being installed as a transitive dependency of wget, but that is no longer the case.
1 parent 6e8661c commit 6132913

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/actions/container_task_prep/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ runs:
2424
# ...possibly this should be moved into the
2525
# install_build_artifact task scripts.
2626
set_platform_globals
27-
if [[ "${platform}" == 'Rocky' ]]; then
28-
# The Rocky9 container, at least, is missing openvox-agent's
29-
# systemd dependency...
27+
if [[ "${platform}" == 'Rocky' ]] || [[ "${platform}" == 'Fedora' ]]; then
28+
# The Rocky9 and Fedora containers, at least, are missing
29+
# openvox-agent's systemd dependency...
3030
exec_and_capture dnf install -y systemd
3131
if [[ "${os_major_version}" == '8' ]]; then
3232
# ...and the Rocky8 container is missing findutils.

0 commit comments

Comments
 (0)