Unverified Commit b1565cc6 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

fix: Remove PODMAN variable (#968)

parent a2ce43c1
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -25,7 +25,6 @@ trap 'error "Status $? while: $BASH_COMMAND (line $LINENO/$BASH_LINENO)"' ERR

# Helper variables

PODMAN="N"
ROOTLESS="N"
PRIVILEGED="N"
ENGINE="Docker"
@@ -35,7 +34,6 @@ PROCESS="${PROCESS// /-}"
if [ -f "/run/.containerenv" ]; then
  ENGINE="${container:-}"
  if [[ "${ENGINE,,}" == *"podman"* ]]; then
    PODMAN="Y"
    ROOTLESS="Y"
    ENGINE="Podman"
  else