From 8a19b595c71ad3b7cbbdaf0272a5447e4c350d8d Mon Sep 17 00:00:00 2001 From: "Michael F. Booth" Date: Sun, 1 Dec 2013 23:25:23 -0500 Subject: [PATCH] Fix "manual" ansible-playbook example in guide_vagrant.rst The given example is trying to load an inventory file with the -i option, so it should probably be given the actual Vagrant-written inventory file name. I contemplated using 'vagrant_ansible_inventory_default' instead (which is what my Vagrant demo actually creates) but 'vagrant_ansible_inventory_machinename' is more consistent with the existing example in the docs. --- docsite/rst/guide_vagrant.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/guide_vagrant.rst b/docsite/rst/guide_vagrant.rst index dc861b9153e..899735de85e 100644 --- a/docsite/rst/guide_vagrant.rst +++ b/docsite/rst/guide_vagrant.rst @@ -117,7 +117,7 @@ Here is an example: .. code-block:: bash - $ ansible-playbook -i insecure_private_key --private-key=~/.vagrant.d/insecure_private_key -u vagrant playbook.yml + $ ansible-playbook -i vagrant_ansible_inventory_machinename --private-key=~/.vagrant.d/insecure_private_key -u vagrant playbook.yml .. seealso::