The ceph auth get-or-create example here is the only place on the
page that does not use 'allow <perms.' syntax. I found that
confusing. Update to use allow and single quotes.
Signed-off-by: Travis Rhoden <trhoden@gmail.com>
For example, to create a user ``client.foo`` with access 'rw' for
daemon type 'osd' and 'r' for daemon type 'mon'::
- sudo ceph auth get-or-create-key client.foo osd rw mon r > keyring.foo
+ sudo ceph auth get-or-create-key client.foo osd 'allow rw' mon 'allow r' > keyring.foo
.. note: User names are associated to user types, which include ``client``
``osd``, ``mon``, and ``mds``. In most cases, you will be