From 428e082ab500167ed1190e6c30b4b4b9c31767e8 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sun, 3 Jan 2021 19:52:33 +0100 Subject: [PATCH] Also filter the retrieving image stuff during the lxc launch because that creates a mess --- lib/lxc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lxc.sh b/lib/lxc.sh index 0ded293..603f1f4 100644 --- a/lib/lxc.sh +++ b/lib/lxc.sh @@ -10,7 +10,7 @@ LXC_CREATE () { -c security.privileged=true \ -c limits.memory=80% \ -c limits.cpu.allowance=80% \ - | grep -v -E "^\s*Remapping container filesystem\s*$" + | grep -v -E "^\s*Remapping container filesystem\s*$\|^\s*Retrieving image" [[ "${PIPESTATUS[0]}" -eq 0 ]] || clean_exit 1