From: Kefu Chai Date: Wed, 25 Oct 2017 02:19:14 +0000 (+0800) Subject: vstart.sh: should quote the parameters to get them quoted X-Git-Tag: v13.0.1~416^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5277240d87052ec70a78be3f1a7f026796f2ada4;p=ceph.git vstart.sh: should quote the parameters to get them quoted Signed-off-by: Kefu Chai --- diff --git a/src/vstart.sh b/src/vstart.sh index a0db91523c37..ac5f1907f85b 100755 --- a/src/vstart.sh +++ b/src/vstart.sh @@ -378,12 +378,12 @@ quoted_print() { } prunb() { - quoted_print $* '&' + quoted_print "$@" '&' "$@" & } prun() { - quoted_print $* + quoted_print "$@" "$@" }