mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-17 05:32:25 +00:00
Do not wait for containerd to be ready, as not using it yet
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
# TODO more robust
|
||||
while [ ! -S /run/containerd/containerd.sock ]; do sleep 1; done
|
||||
while ! ctr list 2> /dev/null; do sleep 1; done
|
||||
# while [ ! -S /run/containerd/containerd.sock ]; do sleep 1; done
|
||||
# while ! ctr list 2> /dev/null; do sleep 1; done
|
||||
|
||||
# start system containers
|
||||
# temporarily using runc not containerd
|
||||
|
||||
Reference in New Issue
Block a user