fix ceph osd create help

[ The following text is in the "UTF-8" character set. ]
    [ Your display is set for the "ANSI_X3.4-1968" character set.  ]
    [ Some characters may be displayed incorrectly. ]

Change ceph osd create <osd-id> to ceph osd create <uuid>, since this
is what the command is really doing.

Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de>
This commit is contained in:
Danny Kukawka 2012-08-16 12:56:32 +02:00 committed by Sage Weil
parent c6ae5e29a1
commit 36e7b077a7
3 changed files with 4 additions and 4 deletions

View File

@ -142,9 +142,9 @@ Create a cluster snapshot. ::
Mark an OSD as lost. This may result in permanent data loss. Use with caution. ::
$ ceph osd create [<id>]
$ ceph osd create [<uuid>]
Create a new OSD. If no ID is given, a new ID is automatically selected
Create a new OSD. If no UUID is given, a new UUID is automatically selected
if possible. ::
$ ceph osd rm [<id>...]

View File

@ -43,7 +43,7 @@
ceph osd crush set <osd-id> <name> <weight> [<loc1> [<loc2> ...]]
ceph osd crush move <bucketname> <loc1> [<loc2> ...]
ceph osd crush reweight <name> <weight>
ceph osd create [<osd-id>]
ceph osd create [<uuid>]
ceph osd rm <osd-id> [<osd-id>...]
ceph osd lost [--yes-i-really-mean-it]
ceph osd reweight <osd-id> <weight>

View File

@ -86,7 +86,7 @@ static void usage()
cout << " ceph osd crush set <osd-id> <name> <weight> [<loc1> [<loc2> ...]]\n";
cout << " ceph osd crush move <bucketname> <loc1> [<loc2> ...]\n";
cout << " ceph osd crush reweight <name> <weight>\n";
cout << " ceph osd create [<osd-id>]\n";
cout << " ceph osd create [<uuid>]\n";
cout << " ceph osd rm <osd-id> [<osd-id>...]\n";
cout << " ceph osd lost [--yes-i-really-mean-it]\n";
cout << " ceph osd reweight <osd-id> <weight>\n";