From 43c2ce1b3d1901622ab805d5de7bf3877700cc16 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Wed, 25 Jan 2023 09:07:55 +0100 Subject: [PATCH] fix vg creation --- 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 cfe38b24a..01002c794 100644 --- a/usr/lib/archboot/installer/blockdevices.sh +++ b/usr/lib/archboot/installer/blockdevices.sh @@ -740,7 +740,7 @@ _createvg() _PVNUMBER=$((_PVNUMBER + 1)) # clean loop from used partition and options #shellcheck disable=SC2001,SC2086 - _PVS="$(echo ${_PVS} sed -e "s#$(${_LSBLK} NAME,SIZE -d "${_PV}")##g")" + _PVS="$(echo ${_PVS} | sed -e "s#$(${_LSBLK} NAME,SIZE -d "${_PV}")##g")" # add more devices #shellcheck disable=SC2086 _dialog --menu "Select additional Physical Volume ${_PVNUMBER} for ${_VGDEV}:" 13 50 10 ${_PVS} DONE _ 2>"${_ANSWER}" || return 1