Commit 2019a97b by Michael DeHaan

Merge pull request #196 from tbielawa/local_action

Add docs for 'local_action' (ansible:#905). Oh, and fix 'make viewdocs'.
parents 1824dd33 9ad59296
...@@ -93,5 +93,5 @@ if __name__ == '__main__': ...@@ -93,5 +93,5 @@ if __name__ == '__main__':
if "view" in sys.argv: if "view" in sys.argv:
import webbrowser import webbrowser
if not webbrowser.open('html/index.html'): if not webbrowser.open('index.html'):
print >> sys.stderr, "Could not open on your webbrowser." print >> sys.stderr, "Could not open on your webbrowser."
...@@ -491,7 +491,6 @@ a good idea:: ...@@ -491,7 +491,6 @@ a good idea::
serial: 5 serial: 5
tasks: tasks:
- name: take out of load balancer pool - name: take out of load balancer pool
action: command /usr/bin/take_out_of_pool $inventory_hostname action: command /usr/bin/take_out_of_pool $inventory_hostname
delegate_to: 127.0.0.1 delegate_to: 127.0.0.1
...@@ -503,6 +502,22 @@ a good idea:: ...@@ -503,6 +502,22 @@ a good idea::
action: command /usr/bin/add_back_to_pool $inventory_hostname action: command /usr/bin/add_back_to_pool $inventory_hostname
delegate_to: 127.0.0.1 delegate_to: 127.0.0.1
Here is the same playbook as above, but using the shorthand syntax,
'local_action', for delegating to 127.0.0.1::
---
# ...
tasks:
- name: take out of load balancer pool
local_action: command /usr/bin/take_out_of_pool $inventory_hostname
# ...
- name: add back to load balancer pool
local_action: command /usr/bin/add_back_to_pool $inventory_hostname
Style Points Style Points
```````````` ````````````
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment