From: Yehuda Sadeh Date: Fri, 27 Feb 2009 20:51:51 +0000 (-0800) Subject: ceph-daemons: replace $* with "$@" X-Git-Tag: v0.7~113 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3e78cb85bb41527a57c6e5d034bd1c0aa3515aa2;p=ceph.git ceph-daemons: replace $* with "$@" --- diff --git a/src/ceph-daemons b/src/ceph-daemons index dc7e0f108e6..3f093617fe0 100755 --- a/src/ceph-daemons +++ b/src/ceph-daemons @@ -77,7 +77,7 @@ done command=$1 shift -what=$* +what="$@" if [[ $what = "" ]]; then # extract list of monitors, mdss, osds defined in startup.conf @@ -143,4 +143,4 @@ for item in $what; do esac done -exit 0 \ No newline at end of file +exit 0