From 1e35ac7603e0ecbfa91b13e5c731177e25f7547a Mon Sep 17 00:00:00 2001 From: Tim Bielawa Date: Mon, 8 Oct 2012 12:46:16 -0400 Subject: [PATCH] Fix typo in service module docs --- library/service | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/library/service b/library/service index 60d3939fb53..eb53a9c62fa 100755 --- a/library/service +++ b/library/service @@ -29,12 +29,12 @@ description: options: name: required: true - description: + description: - Name of the service. state: required: false choices: [ running, started, stopped, restarted, reloaded ] - description: + description: - I(started), I(stopped), I(reloaded), I(restarted). I(Started)/I(stopped) are idempotent actions that will not run commands unless necessary. I(restarted) will always bounce the @@ -42,16 +42,16 @@ options: pattern: required: false version_added: "0.7" - description: + description: - If the service does not respond to the status command, name a substring to look for as would be found in the output of the I(ps) command as a stand-in for a status result. If the string is found, - the servie will be assumed to be running. + the service will be assumed to be running. enabled: required: false choices: [ "yes", "no" ] - description: - - Whether the service should start on boot. + description: + - Whether the service should start on boot. examples: - code: service name=httpd state=started description: Example action from Ansible Playbooks