dracut.sh: remove quotes from install_items and install_optional_items

Unfortunately these are lists with whitespaces.
master
Harald Hoyer 2015-08-10 14:05:15 +02:00
parent e6a2555c7d
commit 3c00189988
1 changed files with 2 additions and 2 deletions

View File

@ -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"