From: Harald Hoyer Date: Mon, 10 Aug 2015 12:05:15 +0000 (+0200) Subject: dracut.sh: remove quotes from install_items and install_optional_items X-Git-Tag: 044~121 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3c00189988f6921c1affdd61a0f5025ee9b93bda;p=thirdparty%2Fdracut.git dracut.sh: remove quotes from install_items and install_optional_items Unfortunately these are lists with whitespaces. --- diff --git a/dracut.sh b/dracut.sh index 77874ba3d..f7d31a406 100755 --- a/dracut.sh +++ b/dracut.sh @@ -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"