Pr/reorder docker podman check (#19561)
This commit is contained in:
parent
9c02b2990a
commit
3f2cbc9e68
2 changed files with 8 additions and 8 deletions
|
@ -20,13 +20,13 @@ if [ $# -gt 1 ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Allow $RUNTIME to be overridden by the user as an environment variable
|
# Allow $RUNTIME to be overridden by the user as an environment variable
|
||||||
# Else check if either docker or podman exit and set them as runtime
|
# Else check if either podman or docker exit and set them as runtime
|
||||||
# if none are found error out
|
# if none are found error out
|
||||||
if [ -z "$RUNTIME" ]; then
|
if [ -z "$RUNTIME" ]; then
|
||||||
if command -v docker >/dev/null 2>&1; then
|
if command -v podman >/dev/null 2>&1; then
|
||||||
RUNTIME="docker"
|
|
||||||
elif command -v podman >/dev/null 2>&1; then
|
|
||||||
RUNTIME="podman"
|
RUNTIME="podman"
|
||||||
|
elif command -v docker >/dev/null 2>&1; then
|
||||||
|
RUNTIME="docker"
|
||||||
else
|
else
|
||||||
errcho "Error: no compatible container runtime found."
|
errcho "Error: no compatible container runtime found."
|
||||||
errcho "Either podman or docker are required."
|
errcho "Either podman or docker are required."
|
||||||
|
|
|
@ -16,13 +16,13 @@ for arg; do
|
||||||
done
|
done
|
||||||
|
|
||||||
# Allow $RUNTIME to be overridden by the user as an environment variable
|
# Allow $RUNTIME to be overridden by the user as an environment variable
|
||||||
# Else check if either docker or podman exit and set them as runtime
|
# Else check if either podman or docker exit and set them as runtime
|
||||||
# if none are found error out
|
# if none are found error out
|
||||||
if [ -z "$RUNTIME" ]; then
|
if [ -z "$RUNTIME" ]; then
|
||||||
if command -v docker >/dev/null 2>&1; then
|
if command -v podman >/dev/null 2>&1; then
|
||||||
RUNTIME="docker"
|
|
||||||
elif command -v podman >/dev/null 2>&1; then
|
|
||||||
RUNTIME="podman"
|
RUNTIME="podman"
|
||||||
|
elif command -v docker >/dev/null 2>&1; then
|
||||||
|
RUNTIME="docker"
|
||||||
else
|
else
|
||||||
errcho "Error: no compatible container runtime found."
|
errcho "Error: no compatible container runtime found."
|
||||||
errcho "Either podman or docker are required."
|
errcho "Either podman or docker are required."
|
||||||
|
|
Loading…
Reference in a new issue