From 956bff2f07987aa670fd30d7a315a2e5486e08c0 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sat, 1 Jun 2013 18:36:44 -0400 Subject: [PATCH] Standardize docs --- library/web_infrastructure/supervisorctl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/library/web_infrastructure/supervisorctl b/library/web_infrastructure/supervisorctl index 1eff781da5..3666e7d397 100644 --- a/library/web_infrastructure/supervisorctl +++ b/library/web_infrastructure/supervisorctl @@ -38,13 +38,15 @@ options: required: true default: null choices: [ "present", "started", "stopped", "restarted" ] -examples: - - code: "supervisorctl: name=my_app state=started" - description: Manage the state of program I(my_app) to be in I(started) state. requirements: [ ] author: Matt Wright ''' +EXAMPLES = ''' +# Manage the state of program to be in 'started' state. +supervisorctl: name=my_app state=started +''' + def main(): arg_spec = dict( name=dict(required=True),