From 09ef8f5722c300088e78512ca403f3d99b08d74d Mon Sep 17 00:00:00 2001 From: Mike Putnam Date: Wed, 10 Dec 2014 12:13:31 -0600 Subject: [PATCH] Typo fix in playbook delegation docs. --- docsite/rst/playbooks_delegation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/playbooks_delegation.rst b/docsite/rst/playbooks_delegation.rst index e4640afbfa8..483a24edbc3 100644 --- a/docsite/rst/playbooks_delegation.rst +++ b/docsite/rst/playbooks_delegation.rst @@ -161,7 +161,7 @@ This can be optionally paired with "delegate_to" to specify an individual host t When "run_once" is not used with "delegate_to" it will execute on the first host, as defined by inventory, in the group(s) of hosts targeted by the play. e.g. webservers[0] if the play targeted "hosts: webservers". -This aproach is similar, although more concise and cleaner than applying a conditional to a task such as:: +This approach is similar, although more concise and cleaner than applying a conditional to a task such as:: - command: /opt/application/upgrade_db.py when: inventory_hostname == webservers[0]