From: Corey Daley <cdaley@redhat.com>
Date: Tue, 23 Jun 2020 19:53:00 +0000 (-0400)
Subject: /run/docker.sock check not needed since moving to podman
X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=refs%2Fpull%2F3%2Fhead;p=oweals%2Fhwdata.git

/run/docker.sock check not needed since moving to podman
---

diff --git a/check-usb-ids.sh b/check-usb-ids.sh
index 17f9c05..3ef114a 100755
--- a/check-usb-ids.sh
+++ b/check-usb-ids.sh
@@ -8,11 +8,6 @@ if [[ "${NO_DOCKER:-0}" == 1 ]]; then
     exit 0
 fi
 
-if ! [[ -e /run/docker.sock ]]; then
-    echo "Skipping check of usb ids because of missing docker socket."
-    exit 0
-fi
-
 tmpdir=`mktemp -d`
 echo "Listing usb devices:"
 sudo podman run -t --privileged --rm=true \