From 2bb25cac74506093f7acd14ace61121d2f9aa00e Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sat, 1 Jun 2013 18:42:03 -0400 Subject: [PATCH] Doc standardization --- utilities/fireball | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/utilities/fireball b/utilities/fireball index ea4a0707d41..19bb0044be9 100644 --- a/utilities/fireball +++ b/utilities/fireball @@ -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