1755ca
From e076279d38466b974305fd38aae4a22e0bd9a90f Mon Sep 17 00:00:00 2001
1755ca
From: Harald Hoyer <harald@redhat.com>
1755ca
Date: Mon, 10 Aug 2015 14:05:15 +0200
1755ca
Subject: [PATCH] dracut.sh: remove quotes from install_items and
1755ca
 install_optional_items
1755ca
1755ca
Unfortunately these are lists with whitespaces.
1755ca
1755ca
Cherry-picked from: 3c00189988f6921c1affdd61a0f5025ee9b93bda
1755ca
Resolves: #1520721
1755ca
---
1755ca
 dracut.sh | 4 ++--
1755ca
 1 file changed, 2 insertions(+), 2 deletions(-)
1755ca
1755ca
diff --git a/dracut.sh b/dracut.sh
1755ca
index 90b75e51..3b91b5e8 100755
1755ca
--- a/dracut.sh
1755ca
+++ b/dracut.sh
1755ca
@@ -1396,8 +1396,8 @@ if [[ $no_kernel != yes ]]; then
1755ca
 fi
1755ca
 
1755ca
 if [[ $kernel_only != yes ]]; then
1755ca
-    (( ${#install_items[@]} > 0 )) && inst_multiple "${install_items[@]}"
1755ca
-    (( ${#install_optional_items[@]} > 0 )) && inst_multiple -o "${install_optional_items[@]}"
1755ca
+    (( ${#install_items[@]} > 0 )) && inst_multiple ${install_items[@]}
1755ca
+    (( ${#install_optional_items[@]} > 0 )) && inst_multiple -o ${install_optional_items[@]}
1755ca
 
1755ca
     [[ $kernel_cmdline ]] && printf "%s\n" "$kernel_cmdline" >> "${initdir}/etc/cmdline.d/01-default.conf"
1755ca