contrib/dockerlib.sh
branchstable
changeset 27103 2d437a0f3355
parent 26888 271a802071b7
child 27245 cea1473ba468
--- a/contrib/dockerlib.sh	Mon Nov 30 16:31:28 2015 -0800
+++ b/contrib/dockerlib.sh	Tue Nov 24 18:13:25 2015 -0800
@@ -14,8 +14,8 @@
   fi
 
   $DOCKER -h 2> /dev/null | grep -q Jansens && { echo "Error: $DOCKER is the Docking System Tray - install docker.io instead"; exit 1; }
-  $DOCKER version | grep -q "^Client version:" || { echo "Error: unexpected output from \"$DOCKER version\""; exit 1; }
-  $DOCKER version | grep -q "^Server version:" || { echo "Error: could not get docker server version - check it is running and your permissions"; exit 1; }
+  $DOCKER version | grep -Eq "^Client( version)?:" || { echo "Error: unexpected output from \"$DOCKER version\""; exit 1; }
+  $DOCKER version | grep -Eq "^Server( version)?:" || { echo "Error: could not get docker server version - check it is running and your permissions"; exit 1; }
 }
 
 # Construct a container and leave its name in $CONTAINER for future use.