Correct a mistake done when backporting PR 2691
Resolves: rhbz2121476
This commit is contained in:
parent
04a5b8567a
commit
6d806be080
21
rear-vg-command-not-found-bz2121476.patch
Normal file
21
rear-vg-command-not-found-bz2121476.patch
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
commit ead05a460d3b219372f47be888ba6011c7fd3318
|
||||||
|
Author: Pavel Cahyna <pcahyna@redhat.com>
|
||||||
|
Date: Tue Aug 22 12:32:04 2023 +0200
|
||||||
|
|
||||||
|
Fix downstream only bug
|
||||||
|
|
||||||
|
\$IsInArray -> IsInArray - it is a shell function, not a variable.
|
||||||
|
|
||||||
|
diff --git a/usr/share/rear/layout/prepare/GNU/Linux/110_include_lvm_code.sh b/usr/share/rear/layout/prepare/GNU/Linux/110_include_lvm_code.sh
|
||||||
|
index d34ab335..a65a9c8e 100644
|
||||||
|
--- a/usr/share/rear/layout/prepare/GNU/Linux/110_include_lvm_code.sh
|
||||||
|
+++ b/usr/share/rear/layout/prepare/GNU/Linux/110_include_lvm_code.sh
|
||||||
|
@@ -246,7 +246,7 @@ create_lvmvol() {
|
||||||
|
local warnraidline
|
||||||
|
|
||||||
|
if [ $is_thin -eq 0 ] ; then
|
||||||
|
- ifline="if IsInArray $vg \"\${create_logical_volumes[@]}\" && ! \$IsInArray $vg \"\${create_thin_volumes_only[@]}\" ; then"
|
||||||
|
+ ifline="if IsInArray $vg \"\${create_logical_volumes[@]}\" && ! IsInArray $vg \"\${create_thin_volumes_only[@]}\" ; then"
|
||||||
|
else
|
||||||
|
ifline="if IsInArray $vg \"\${create_logical_volumes[@]}\" ; then"
|
||||||
|
fi
|
@ -49,6 +49,7 @@ Patch58: rear-device-shrinking-bz2223895.patch
|
|||||||
Patch59: rear-usb-uefi-part-size-bz2228402.patch
|
Patch59: rear-usb-uefi-part-size-bz2228402.patch
|
||||||
Patch60: rear-luks-key-bz2228779.patch
|
Patch60: rear-luks-key-bz2228779.patch
|
||||||
Patch61: rear-uefi-usb-secureboot-bz2196445.patch
|
Patch61: rear-uefi-usb-secureboot-bz2196445.patch
|
||||||
|
Patch62: rear-vg-command-not-found-bz2121476.patch
|
||||||
|
|
||||||
# rear contains only bash scripts plus documentation so that on first glance it could be "BuildArch: noarch"
|
# rear contains only bash scripts plus documentation so that on first glance it could be "BuildArch: noarch"
|
||||||
# but actually it is not "noarch" because it only works on those architectures that are explicitly supported.
|
# but actually it is not "noarch" because it only works on those architectures that are explicitly supported.
|
||||||
|
Loading…
Reference in New Issue
Block a user