Doc standardization
This commit is contained in:
parent
2438ef474a
commit
2bb25cac74
1 changed files with 17 additions and 14 deletions
|
@ -42,26 +42,29 @@ options:
|
|||
this number of minutes before turning itself off.
|
||||
required: false
|
||||
default: 30
|
||||
# WARNING: very careful when moving space around, below
|
||||
examples:
|
||||
- code: |
|
||||
- hosts: devservers
|
||||
gather_facts: false
|
||||
connection: ssh
|
||||
sudo: yes
|
||||
tasks:
|
||||
- action: fireball
|
||||
- hosts: devservers
|
||||
connection: fireball
|
||||
tasks:
|
||||
- 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
|
||||
'''
|
||||
|
||||
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
|
||||
connection: ssh
|
||||
sudo: yes
|
||||
tasks:
|
||||
- action: fireball
|
||||
|
||||
- hosts: devservers
|
||||
connection: fireball
|
||||
tasks:
|
||||
- command: /usr/bin/anything
|
||||
'''
|
||||
|
||||
import os
|
||||
import sys
|
||||
import shutil
|
||||
|
|
Loading…
Reference in a new issue