mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-14 12:19:10 -07:00
win_environment: Make this the Windows reference module
As discussed before we selected win_environment to the documentation, and point to win_uri for a more advanced module. If we want to make this the reference module, we have to get this one absolutely right in every possible way. This PR cleans up both win_environment and win_uri, and makes the required changes to the windows module development section.
This commit is contained in:
parent
9f4d73b699
commit
31e7d735a3
6 changed files with 81 additions and 231 deletions
|
@ -1,81 +1,56 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# (c) 2015, Jon Hawkesworth (@jhawkesworth) <figs@unity.demon.co.uk>
|
||||
#
|
||||
# This file is part of Ansible
|
||||
#
|
||||
# Ansible is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Ansible is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# this is a windows documentation stub. actual code lives in the .ps1
|
||||
# file of the same name
|
||||
# Copyright: (c) 2015, Jon Hawkesworth (@jhawkesworth) <figs@unity.demon.co.uk>
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
DOCUMENTATION = r'''
|
||||
---
|
||||
module: win_environment
|
||||
version_added: "2.0"
|
||||
short_description: Modifies environment variables on windows hosts.
|
||||
version_added: '2.0'
|
||||
short_description: Modify environment variables on windows hosts
|
||||
description:
|
||||
- Uses .net Environment to set or remove environment variables and 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.
|
||||
- Uses .net Environment to set or remove environment variables and 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.
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
- present to ensure environment variable is set, or absent to ensure it is removed
|
||||
required: false
|
||||
- Set to C(present) to ensure environment variable is set.
|
||||
- Set to C(absent) to ensure it is removed.
|
||||
choices: [ absent, present ]
|
||||
default: present
|
||||
choices:
|
||||
- present
|
||||
- absent
|
||||
name:
|
||||
description:
|
||||
- The name of the environment variable
|
||||
- The name of the environment variable.
|
||||
required: true
|
||||
default: no default
|
||||
value:
|
||||
description:
|
||||
- The value to store in the environment variable. Can be omitted for state=absent
|
||||
required: false
|
||||
default: no default
|
||||
- The value to store in the environment variable.
|
||||
- Can be omitted for C(state=absent).
|
||||
level:
|
||||
description:
|
||||
- The level at which to set the environment variable.
|
||||
- Use 'machine' to set for all users.
|
||||
- Use 'user' to set for the current user that ansible is connected as.
|
||||
- Use 'process' to set for the current process. Probably not that useful.
|
||||
- The level at which to set the environment variable.
|
||||
- Use C(machine) to set for all users.
|
||||
- Use C(user) to set for the current user that ansible is connected as.
|
||||
- Use C(process) to set for the current process. Probably not that useful.
|
||||
choices: [ machine, user, process ]
|
||||
required: true
|
||||
default: no default
|
||||
choices:
|
||||
- machine
|
||||
- process
|
||||
- user
|
||||
author: "Jon Hawkesworth (@jhawkesworth)"
|
||||
author:
|
||||
- Jon Hawkesworth (@jhawkesworth)
|
||||
notes:
|
||||
- This module is best-suited for setting the entire value of an
|
||||
environment variable. For safe element-based management of
|
||||
path-like environment vars, use the M(win_path) module.
|
||||
- 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.
|
||||
- This module is best-suited for setting the entire value of an
|
||||
environment variable. For safe element-based management of
|
||||
path-like environment vars, use the M(win_path) module.
|
||||
- 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 = r'''
|
||||
|
@ -95,24 +70,12 @@ EXAMPLES = r'''
|
|||
|
||||
RETURN = r'''
|
||||
before_value:
|
||||
description:
|
||||
- the value of the environment key before a change, this is null if it didn't
|
||||
exist
|
||||
description: the value of the environment key before a change, this is null if it didn't exist
|
||||
returned: always
|
||||
type: string
|
||||
sample: C:\Windows\System32
|
||||
level:
|
||||
description: the level set when calling the module
|
||||
returned: always
|
||||
type: string
|
||||
sample: machine
|
||||
name:
|
||||
description: the name of the environment key the module checked
|
||||
returned: always
|
||||
type: string
|
||||
sample: JAVA_HOME
|
||||
value:
|
||||
description: the value the environment key has been set to
|
||||
description: the value the environment key has been set to, this is null if removed
|
||||
returned: always
|
||||
type: string
|
||||
sample: C:\Program Files\jdk1.8
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue