Fix a few minor issues in the Getting started document

This commit is contained in:
Lars Francke 2013-10-20 23:44:19 +02:00
commit 5c905fd165

View file

@ -65,7 +65,7 @@ do:
$ ssh-agent bash $ ssh-agent bash
$ ssh-add ~/.ssh/id_rsa $ ssh-add ~/.ssh/id_rsa
(Depending on your setup, you may wish to ansible's --private-key option to specify a pem file instead) (Depending on your setup, you may wish to use Ansible's --private-key option to specify a pem file instead)
Now ping all your nodes: Now ping all your nodes:
@ -119,6 +119,8 @@ If you wish to disable this behavior and understand the implications, you can do
Alternatively this can be set by an environment variable: Alternatively this can be set by an environment variable:
.. code-block:: bash
$ export ANSIBLE_HOST_KEY_CHECKING=False $ export ANSIBLE_HOST_KEY_CHECKING=False
Also note that host key checking in paramiko mode is reasonably slow, therefore switching to 'ssh' is also recommended when using this feature. Also note that host key checking in paramiko mode is reasonably slow, therefore switching to 'ssh' is also recommended when using this feature.