From 934f8cea29d88cb6f062c053beeea236b4e3ae59 Mon Sep 17 00:00:00 2001 From: abenmiloud Date: Thu, 24 May 2018 17:48:02 +0200 Subject: [PATCH] mini fix --- HowtoCeph.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/HowtoCeph.md b/HowtoCeph.md index e3894d61..3bd628f0 100644 --- a/HowtoCeph.md +++ b/HowtoCeph.md @@ -260,9 +260,9 @@ $ ceph health Il y a deux façons de procéder. La première avec `add` et la seconde avec `get-or-create` : ~~~ -$ ceph auth add client.slacker0 mon 'allow r' +$ ceph auth add client.john mon 'allow r' added key for client.john -$ ceph auth get-or-create client.slacker0 mon 'allow r' +$ ceph auth get-or-create client.paul mon 'allow r' [client.paul] key = **************************************** ~~~ @@ -275,14 +275,14 @@ La seconde méthode va, en plus de la création de l'utilisateur, afficher sa cl La commande suivante permet de modifier les droits d'un utilisateur. Cela va *écraser* ses droits actuels. ~~~ -$ ceph auth caps client.slacker0 mon 'profile rbd' osd 'profile rbd pool=rbd' +$ ceph auth caps client.john mon 'profile rbd' osd 'profile rbd pool=rbd' ~~~ ## Suppression ~~~ -$ ceph auth del client.slacker0 +$ ceph auth del client.john ~~~