Document module limitations to resolve https://github.com/ansible/ansible-modules-extras/issues/908
This commit is contained in:
parent
803d9695e0
commit
17d1c8916d
1 changed files with 10 additions and 4 deletions
|
@ -25,11 +25,10 @@ DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: win_environment
|
module: win_environment
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
short_description: Modifies environment variables on windows guests
|
short_description: Modifies environment variables on windows hosts.
|
||||||
description:
|
description:
|
||||||
- Uses .net Environment to set or remove environment variables.
|
- Uses .net Environment to set or remove environment variables and can set at User, Machine or Process level.
|
||||||
- Can set at User, Machine or Process level.
|
- User level environment variables will be set, but not available until the user has logged off and on again.
|
||||||
- Note that usual rules apply, so existing environments will not change until new processes are started.
|
|
||||||
options:
|
options:
|
||||||
state:
|
state:
|
||||||
description:
|
description:
|
||||||
|
@ -62,6 +61,13 @@ options:
|
||||||
- process
|
- process
|
||||||
- user
|
- user
|
||||||
author: "Jon Hawkesworth (@jhawkesworth)"
|
author: "Jon Hawkesworth (@jhawkesworth)"
|
||||||
|
notes:
|
||||||
|
- This module does not broadcast change events.
|
||||||
|
This means that the minority of windows applications which can have
|
||||||
|
their environment changed without restarting will not be notified and
|
||||||
|
therefore will need restarting to pick up new environment settings.
|
||||||
|
User level environment variables will require the user to log out
|
||||||
|
and in again before they become available.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
|
Loading…
Reference in a new issue