Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions playbooks/fedora-30/setup-rpm-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@

- name: Check versions of crucial packages
command: rpm -q podman runc conmon fuse-overlayfs flatpak-session-helper

- include_tasks: ../pre-common.yaml
2 changes: 2 additions & 0 deletions playbooks/fedora-31/setup-rpm-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@

- name: Check versions of crucial packages
command: rpm -q podman crun conmon fuse-overlayfs flatpak-session-helper

- include_tasks: ../pre-common.yaml
2 changes: 2 additions & 0 deletions playbooks/fedora-rawhide/setup-rpm-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@

- name: Check versions of crucial packages
command: rpm -q podman crun conmon fuse-overlayfs flatpak-session-helper

- include_tasks: ../pre-common.yaml
6 changes: 6 additions & 0 deletions playbooks/pre-common.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- name: Load registry image in pre-phase and auto restart when registry is flaky
command: podman pull registry.fedoraproject.org/f31/fedora-toolbox:31
register: _podman
until: _podman.rc == 0
retries: 5
delay: 10