From 3e75f2c39e351342e5b0c24e5104703efaba162a Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sun, 15 Jan 2023 19:14:50 +0100 Subject: [PATCH] fix vg listing --- usr/lib/archboot/installer/blockdevices.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/blockdevices.sh b/usr/lib/archboot/installer/blockdevices.sh index 45b4c406c..e2e5ad790 100644 --- a/usr/lib/archboot/installer/blockdevices.sh +++ b/usr/lib/archboot/installer/blockdevices.sh @@ -704,7 +704,7 @@ _getavailablevg() for i in $(vgs -o vg_name --noheading); do if ! vgs -o vg_free --noheading --units m "${i}" | grep -q " 0m$"; then #shellcheck disable=SC2028 - echo "${i}"'\\n' + echo "${i} $(vgs -o vg_free --noheading --units m "${i}")" fi done }