Doc standardization

This commit is contained in:
Michael DeHaan 2013-06-01 18:42:03 -04:00
parent e01cdf876c
commit 1c4fa2c45e

View file

@ -42,24 +42,27 @@ options:
this number of minutes before turning itself off. this number of minutes before turning itself off.
required: false required: false
default: 30 default: 30
# WARNING: very careful when moving space around, below notes:
examples: - See the advanced playbooks chapter for more about using fireball mode.
- code: | requirements: [ "zmq", "keyczar" ]
- hosts: devservers author: Michael DeHaan
'''
EXAMPLES = '''
# This example playbook has two plays: the first launches 'fireball' mode on all hosts via SSH, and
# the second actually starts using it for subsequent management over the fireball connection
- hosts: devservers
gather_facts: false gather_facts: false
connection: ssh connection: ssh
sudo: yes sudo: yes
tasks: tasks:
- action: fireball - action: fireball
- hosts: devservers
- hosts: devservers
connection: fireball connection: fireball
tasks: tasks:
- command: /usr/bin/anything - command: /usr/bin/anything
description: "This example playbook has two plays: the first launches I(fireball) mode on all hosts via SSH, and the second actually starts using I(fireball) node for subsequent management over the fireball interface"
notes:
- See the advanced playbooks chapter for more about using fireball mode.
requirements: [ "zmq", "keyczar" ]
author: Michael DeHaan
''' '''
import os import os