]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
vstart: print "start osd.$id" instead of "start osd$id"
authorKefu Chai <kchai@redhat.com>
Fri, 2 Jun 2017 07:10:38 +0000 (15:10 +0800)
committerKefu Chai <kchai@redhat.com>
Fri, 2 Jun 2017 07:10:45 +0000 (15:10 +0800)
"osd.9" is more consistent with other places where an osd is referenced.

Signed-off-by: Kefu Chai <kchai@redhat.com>
src/vstart.sh

index 4ef554798ece65d85e04de265a896223297191e3..0ca1be981cf903e8cb95eb51d8c89ce303be76f1 100755 (executable)
@@ -601,7 +601,7 @@ EOF
             echo adding osd$osd key to auth repository
             ceph_adm -i "$key_fn" auth add osd.$osd osd "allow *" mon "allow profile osd" mgr "allow profile osd"
         fi
-        echo start osd$osd
+        echo start osd.$osd
         run 'osd' $SUDO $CEPH_BIN/ceph-osd -i $osd $ARGS $COSD_ARGS
     done
 }