diff options
author | Loic Dachary <loic@dachary.org> | 2013-10-08 12:02:44 +0200 |
---|---|---|
committer | Loic Dachary <loic@dachary.org> | 2013-10-08 12:07:00 +0200 |
commit | 768fb0a2a2d2a911773340ec1effa15f07335fa6 (patch) | |
tree | 0bb5630489a4f533a2303d59e780e5fdd4ddcb28 | |
parent | 86b5b427188bc683362b383e96eb833b169d15ed (diff) | |
download | ceph-768fb0a2a2d2a911773340ec1effa15f07335fa6.tar.gz |
doc: fix openstack rbd installation command
This cannot work because client.volumes.key is not a command
ssh {your-compute-host} client.volumes.key
replace with a tee to allow for copy/paste as well as using the
cat client.volumes.key
in the following lines.
Signed-off-by: Loic Dachary <loic@dachary.org>
-rw-r--r-- | doc/rbd/rbd-openstack.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/rbd/rbd-openstack.rst b/doc/rbd/rbd-openstack.rst index 660757639aa..80dd43ce406 100644 --- a/doc/rbd/rbd-openstack.rst +++ b/doc/rbd/rbd-openstack.rst @@ -127,7 +127,7 @@ Hosts running ``nova-compute`` do not need the keyring. Instead, they store the secret key in libvirt. Create a temporary copy of the secret key on the hosts running ``nova-compute``:: - ssh {your-compute-host} client.volumes.key <`ceph auth get-key client.volumes` + ceph auth get-key client.volumes | ssh {your-compute-host} tee client.volumes.key Then, on the compute hosts, add the secret key to libvirt and remove the temporary copy of the key:: |