Skip to content

Commit

Permalink
45-grub-images: fix quoting
Browse files Browse the repository at this point in the history
Fixes: 5eb2286
  • Loading branch information
zeha committed Dec 3, 2024
1 parent 6de4d9f commit 2ffb6cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion etc/grml/fai/config/scripts/GRMLBASE/45-grub-images
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,11 @@ for arch in "${ARCHS[@]}" ; do
arm64-efi) filename=/boot/bootaa64.efi ;;
esac

read -r -a modules <<< "${ADDITIONAL_MODULES[$arch]}"
$ROOTCMD grub-mkimage -O "$arch" -o "$filename" --prefix=/boot/grub/ --config="$TMP_CONFIG" \
echo iso9660 part_msdos search_fs_file test \
fat ext2 reiserfs xfs btrfs squash4 part_gpt lvm \
"${ADDITIONAL_MODULES[$arch]}"
"${modules[@]}"
done

rm -f "${target}/${TMP_CONFIG}"
Expand Down

0 comments on commit 2ffb6cf

Please sign in to comment.