]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
do not quote the variable to loop over 644/head
authorAlfredo Deza <alfredo.deza@inktank.com>
Thu, 26 Sep 2013 17:10:26 +0000 (13:10 -0400)
committerAlfredo Deza <alfredo.deza@inktank.com>
Thu, 26 Sep 2013 17:10:26 +0000 (13:10 -0400)
Signed-off-by: Alfredo Deza <alfredo.deza@inktank.com>
src/init-ceph.in

index 51d09ef489baac6e15495f46f0428f8ea2517404..46877d755587dbb85d5f31d51820fb3f13243001 100644 (file)
@@ -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"