Skip to content

Commit

Permalink
ci: restart podman socket during setup
Browse files Browse the repository at this point in the history
Fixes an issue where 'systemctl enable --now podman.socket' fails
during container setup.

+ sudo systemctl enable --now podman.socket
Job failed. See "journalctl -xe" for details.

systemd[1]: Failed to listen on Podman API Socket.
systemd[1]: podman.socket: Socket service podman.service already active, refusing.
  • Loading branch information
justin-stephenson committed Nov 8, 2023
1 parent b6e848e commit 0c4f6b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ runs:
sudo dpkg -i containernetworking-plugins_1.1.1+ds1-3_amd64.deb
rm --force containernetworking-plugins_1.1.1+ds1-3_amd64.deb
sudo systemctl enable --now podman.socket
sudo systemctl enable podman.socket
sudo systemctl restart podman.socket
- name: Checkout sssd-ci-containers repository
uses: actions/checkout@v3
Expand Down

0 comments on commit 0c4f6b2

Please sign in to comment.