[install] fix public key location

key pair is created in ~/.ssh by default, ~/.ssh/id_rsa.pub
is better. This patch fixes it.

Closes-Bug: 1533481
Change-Id: I78e01fa099dea0ee790dd5a892ee40dad6341d95
This commit is contained in:
Hidekazu Nakamura 2016-01-13 14:04:32 +09:00 committed by Christian Berendt
parent f352f5a375
commit 2e05235e3d

View File

@ -53,7 +53,7 @@ must add a public key to the Compute service.
.. code-block:: console
$ ssh-keygen -q -N ""
$ nova keypair-add --pub-key .ssh/id_rsa.pub mykey
$ nova keypair-add --pub-key ~/.ssh/id_rsa.pub mykey
.. note::