From 1f605bb9e00a4852a6e41e6478fab52566f6fdd0 Mon Sep 17 00:00:00 2001 From: David Galloway Date: Thu, 26 May 2022 11:54:30 -0400 Subject: [PATCH] ceph-container-{lint,flake8}: Start podman too Installing 'docker' on CentOS8 installs podman (and podman-docker). One cannot restart the service by calling 'docker' however. Signed-off-by: David Galloway --- ceph-container-flake8/build/build | 2 +- ceph-container-lint/build/build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ceph-container-flake8/build/build b/ceph-container-flake8/build/build index 6c09fc93..ebfbf305 100755 --- a/ceph-container-flake8/build/build +++ b/ceph-container-flake8/build/build @@ -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 diff --git a/ceph-container-lint/build/build b/ceph-container-lint/build/build index e6e606d8..013ab6d1 100755 --- a/ceph-container-lint/build/build +++ b/ceph-container-lint/build/build @@ -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 -- 2.47.3