mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Merge pull request #196 from tbielawa/local_action
Add docs for 'local_action' (ansible:#905). Oh, and fix 'make viewdocs'.
This commit is contained in:
@@ -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::
|
|||||||
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::
|
|||||||
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
|
||||||
````````````
|
````````````
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user