From 60134c5c88c51ad1598d4188b50dc645d221dbbc Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Wed, 2 Oct 2013 21:45:57 -0400 Subject: [PATCH] Slight tweaks to getting started. --- docsite/latest/rst/intro_getting_started.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docsite/latest/rst/intro_getting_started.rst b/docsite/latest/rst/intro_getting_started.rst index 38c5791735f..97d66a979af 100644 --- a/docsite/latest/rst/intro_getting_started.rst +++ b/docsite/latest/rst/intro_getting_started.rst @@ -10,6 +10,12 @@ About Now that you've read `intro_installation` and installed Ansible, it's time to dig in and get started with some commands. +What we are showing first are not the powerful configuration/deployment/orchestration of Ansible, called playbooks. +Playbooks are covered in a seperate section. + +This is basically about how to get going initially. Once you have this down, read `intro_adhoc` for some more +detail, and then you'll be ready to dive into playbooks. + Remote Connection Information ````````````````````````````` @@ -46,6 +52,8 @@ which you have your SSH key in ``authorized_keys``:: aserver.example.org bserver.example.org +This is an inventory file, which is also explained in greater depth here: `intro_inventory`. + We'll assume you are using SSH keys for authentication. Set up SSH agent to avoid retyping passwords: .. code-block:: bash @@ -111,6 +119,8 @@ Also note that host key checking in paramiko mode is reasonably slow, therefore .. seealso:: + :doc:`intro_inventory` + More information about inventory :doc:`intro_adhoc` Examples of basic commands :doc:`playbooks`