Docs: consistently format playbook EXAMPLES

This commit is contained in:
Jan-Piet Mens 2013-06-17 08:53:46 +02:00
commit 30d641094b
30 changed files with 129 additions and 73 deletions

View file

@ -63,13 +63,13 @@ author: Jan-Piet Mens
'''
EXAMPLES = '''
action: irc server=irc.example.net channel="#t1" msg="Hello world"
- irc: server=irc.example.net channel="#t1" msg="Hello world"
local_action: irc port=6669
channel="#t1"
msg="All finished at {{ ansible_date_time.iso8601 }}"
color=red
nick=ansibleIRC
- local_action: irc port=6669
channel="#t1"
msg="All finished at {{ ansible_date_time.iso8601 }}"
color=red
nick=ansibleIRC
'''
# ===========================================