From f314419d1e054f7833b6976ec5ed32373aace622 Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Graber?= Date: Wed, 2 Feb 2022 21:11:09 -0500 Subject: [PATCH] lxc-checkconfig: Fix bashism MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- src/lxc/cmd/lxc-checkconfig.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lxc/cmd/lxc-checkconfig.in b/src/lxc/cmd/lxc-checkconfig.in index 1061b062f..13eb77730 100755 --- a/src/lxc/cmd/lxc-checkconfig.in +++ b/src/lxc/cmd/lxc-checkconfig.in @@ -111,7 +111,8 @@ KVER_MINOR=$($CAT $CONFIG | grep '^# Linux.*Kernel Configuration' | \ fi if [ -z "${KVER_MAJOR}" ]; then - echo "WARNING: Unable to detect version from configuration, assuming latest\n" + echo "WARNING: Unable to detect version from configuration, assuming latest" + echo "" KVER_MAJOR="100" KVER_MINOR="0" fi -- 2.47.2