1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Replace slashes in the parameter string Also remove duplicate documentation

This commit is contained in:
gfrank 2015-11-03 09:48:57 -05:00 committed by Matt Clay
parent 4e4085ad7e
commit 5b3363d178
2 changed files with 3 additions and 6 deletions

View file

@ -149,7 +149,9 @@ Function ParseAppParameters()
[string]$appParameters [string]$appParameters
) )
return ConvertFrom-StringData -StringData $appParameters.TrimStart("@").TrimStart("{").TrimEnd("}").Replace("; ","`n") $escapedAppParameters = $appParameters.TrimStart("@").TrimStart("{").TrimEnd("}").Replace("; ","`n").Replace("\","\\")
return ConvertFrom-StringData -StringData $escapedAppParameters
} }

View file

@ -86,11 +86,6 @@ options:
- Password to be used for service startup - Password to be used for service startup
required: false required: false
default: null default: null
password:
description:
- Password to be used for service startup
required: false
default: null
start_mode: start_mode:
description: description:
- If C(auto) is selected, the service will start at bootup. C(manual) means that the service will start only when another service needs it. C(disabled) means that the service will stay off, regardless if it is needed or not. - If C(auto) is selected, the service will start at bootup. C(manual) means that the service will start only when another service needs it. C(disabled) means that the service will stay off, regardless if it is needed or not.