Skip to content

Commit

Permalink
ceph-container-{lint,flake8}: Start podman too
Browse files Browse the repository at this point in the history
Installing 'docker' on CentOS8 installs podman (and podman-docker). One cannot restart the service by calling 'docker' however.

Signed-off-by: David Galloway <[email protected]>
  • Loading branch information
David Galloway committed May 26, 2022
1 parent 819e5d4 commit 1f605bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ceph-container-flake8/build/build
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function main() {
then
sudo yum -y install epel-release
sudo yum -y install docker jq
sudo systemctl start docker
sudo systemctl start docker || sudo systemctl start podman
pull_request_id=${ghprbPullId:-$2}
workspace=${WORKSPACE:-$1}
else
Expand Down
2 changes: 1 addition & 1 deletion ceph-container-lint/build/build
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function main() {
then
sudo yum -y install epel-release
sudo yum -y install docker jq
sudo systemctl start docker
sudo systemctl start docker || sudo systemctl start podman
pull_request_id=${ghprbPullId:-$2}
workspace=${WORKSPACE:-$1}
else
Expand Down

0 comments on commit 1f605bb

Please sign in to comment.