From 87883199c2ce16425c3908e2aaae02092f3198cd Mon Sep 17 00:00:00 2001 From: Thomas Birkett Date: Fri, 9 Jul 2021 11:44:21 +0100 Subject: [PATCH] Docker 20.10 bumps containerd version. The new containerd package is called "containerd" changing from "docker-containerd" Bump memory requirement for test container. https://github.com/moby/moby/pull/41168 --- healthcheck_wn_condor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/healthcheck_wn_condor b/healthcheck_wn_condor index 83cd563..b48857f 100755 --- a/healthcheck_wn_condor +++ b/healthcheck_wn_condor @@ -356,7 +356,7 @@ then fi # Check that containerd is running - pidof docker-containerd > /dev/null 2>&1 + pidof containerd > /dev/null 2>&1 RC=$? if [ $RC -ne 0 ] then @@ -364,7 +364,7 @@ then fi # Check that containers can be created successfully - sudo /usr/bin/docker run --rm -m 5m busybox date >/dev/null 2>&1 + sudo /usr/bin/docker run --rm -m 6m busybox date >/dev/null 2>&1 RC=$? if [ $RC -ne 0 ] then