From: Alfredo Deza Date: Thu, 26 Sep 2013 17:10:26 +0000 (-0400) Subject: do not quote the variable to loop over X-Git-Tag: v0.71~70^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9d5b724a22232ec06e655b1d27ff56d3d224ae08;p=ceph.git do not quote the variable to loop over Signed-off-by: Alfredo Deza --- diff --git a/src/init-ceph.in b/src/init-ceph.in index 51d09ef489b..46877d75558 100644 --- a/src/init-ceph.in +++ b/src/init-ceph.in @@ -174,7 +174,7 @@ get_name_list "$@" # Reverse the order if we are stopping if [ "$command" = "stop" ]; then - for f in "$what"; do + for f in $what; do new_order="$f $new_order" done what="$new_order"