dracut.sh: remove quotes from install_items and install_optional_items
Unfortunately these are lists with whitespaces.master
parent
e6a2555c7d
commit
3c00189988
|
|
@ -1453,8 +1453,8 @@ if [[ $no_kernel != yes ]]; then
|
|||
fi
|
||||
|
||||
if [[ $kernel_only != yes ]]; then
|
||||
(( ${#install_items[@]} > 0 )) && inst_multiple "${install_items[@]}"
|
||||
(( ${#install_optional_items[@]} > 0 )) && inst_multiple -o "${install_optional_items[@]}"
|
||||
(( ${#install_items[@]} > 0 )) && inst_multiple ${install_items[@]}
|
||||
(( ${#install_optional_items[@]} > 0 )) && inst_multiple -o ${install_optional_items[@]}
|
||||
|
||||
[[ $kernel_cmdline ]] && printf "%s\n" "$kernel_cmdline" >> "${initdir}/etc/cmdline.d/01-default.conf"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue