summaryrefslogtreecommitdiffstats
path: root/src/vstart.sh
diff options
context:
space:
mode:
authorKefu Chai <kchai@redhat.com>2017-06-02 09:10:38 +0200
committerKefu Chai <kchai@redhat.com>2017-06-02 09:10:45 +0200
commitfda6e16cf13cf6f9dca766fb45528c1fe853c781 (patch)
tree8a671954df565e9060d7423f652ad3caae495654 /src/vstart.sh
parentMerge pull request #15408 from yonghengdexin735/wip-zzz-add_const (diff)
downloadceph-fda6e16cf13cf6f9dca766fb45528c1fe853c781.tar.xz
ceph-fda6e16cf13cf6f9dca766fb45528c1fe853c781.zip
vstart: print "start osd.$id" instead of "start osd$id"
"osd.9" is more consistent with other places where an osd is referenced. Signed-off-by: Kefu Chai <kchai@redhat.com>
Diffstat (limited to '')
-rwxr-xr-xsrc/vstart.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vstart.sh b/src/vstart.sh
index 4ef554798ec..0ca1be981cf 100755
--- a/src/vstart.sh
+++ b/src/vstart.sh
@@ -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
}