diff options
author | Kefu Chai <kchai@redhat.com> | 2017-06-02 09:10:38 +0200 |
---|---|---|
committer | Kefu Chai <kchai@redhat.com> | 2017-06-02 09:10:45 +0200 |
commit | fda6e16cf13cf6f9dca766fb45528c1fe853c781 (patch) | |
tree | 8a671954df565e9060d7423f652ad3caae495654 /src/vstart.sh | |
parent | Merge pull request #15408 from yonghengdexin735/wip-zzz-add_const (diff) | |
download | ceph-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-x | src/vstart.sh | 2 |
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 } |