Move comments to the documentation

pull/18777/head
gfrank 9 years ago committed by Matt Clay
parent 6fa4292bed
commit 3ea3b9efc9

@ -39,10 +39,6 @@ If ($params.state)
{
$state = $params.state.ToString().ToLower()
$validStates = "present", "absent", "started", "stopped", "restarted"
# These don't really fit the declarative style of ansible
# If you need to do these things, you can just write a command for it
# "paused", "continued", "rotated"
If ($validStates -notcontains $state)
{
@ -138,11 +134,6 @@ Function Nssm-Install
[string]$application
)
#note: the application name must look like the following, if the directory includes spaces:
# nssm install service "c:\Program Files\app.exe" """C:\Path with spaces"""
#see https://git.nssm.cc/?p=nssm/nssm.git;a=commit;h=0b386fc1984ab74ee59b7bed14b7e8f57212c22b for more info
if (!$application)
{
Throw "Error installing service ""$name"". No application was supplied."

@ -39,8 +39,10 @@ options:
state:
description:
- State of the service on the system
- Note that NSSM actions like "pause", "continue", "rotate" do not fit the declarative style of ansible, so these should be implemented via the ansible command module
required: false
choices:
- present
- started
- stopped
- restarted
@ -50,6 +52,10 @@ options:
application:
description:
- The application binary to run as a service
- Specify this whenever the service may need to be installed (state: present, started, stopped, restarted)
- Note that the application name must look like the following, if the directory includes spaces:
- nssm install service "c:\Program Files\app.exe" """C:\Path with spaces"""
- See commit 0b386fc1984ab74ee59b7bed14b7e8f57212c22b in the nssm.git project for more info (https://git.nssm.cc/?p=nssm.git;a=commit;h=0b386fc1984ab74ee59b7bed14b7e8f57212c22b)
required: false
default: null

Loading…
Cancel
Save