2015-05-14 23:29:53 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2015-05-14 23:40:30 +00:00
|
|
|
# (c) 2015, Jon Hawkesworth (@jhawkesworth) <figs@unity.demon.co.uk>
|
2015-05-14 23:29:53 +00:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2017-03-14 16:07:22 +00:00
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.0',
|
|
|
|
'status': ['preview'],
|
|
|
|
'supported_by': 'community'}
|
|
|
|
|
2016-12-06 10:35:25 +00:00
|
|
|
|
2017-01-19 01:57:33 +00:00
|
|
|
DOCUMENTATION = r'''
|
2015-05-14 23:29:53 +00:00
|
|
|
---
|
|
|
|
module: win_environment
|
|
|
|
version_added: "2.0"
|
2015-10-07 04:25:28 +00:00
|
|
|
short_description: Modifies environment variables on windows hosts.
|
2015-05-14 23:29:53 +00:00
|
|
|
description:
|
2017-01-19 01:57:33 +00:00
|
|
|
- Uses .net Environment to set or remove environment variables and can set at User, Machine or Process level.
|
2015-10-07 04:25:28 +00:00
|
|
|
- User level environment variables will be set, but not available until the user has logged off and on again.
|
2015-05-14 23:29:53 +00:00
|
|
|
options:
|
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- present to ensure environment variable is set, or absent to ensure it is removed
|
|
|
|
required: false
|
|
|
|
default: present
|
|
|
|
choices:
|
|
|
|
- present
|
|
|
|
- absent
|
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- The name of the environment variable
|
|
|
|
required: true
|
|
|
|
default: no default
|
|
|
|
value:
|
2017-01-19 01:57:33 +00:00
|
|
|
description:
|
2015-05-14 23:29:53 +00:00
|
|
|
- The value to store in the environment variable. Can be omitted for state=absent
|
|
|
|
required: false
|
|
|
|
default: no default
|
|
|
|
level:
|
2017-01-19 01:57:33 +00:00
|
|
|
description:
|
2015-05-14 23:29:53 +00:00
|
|
|
- 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.
|
|
|
|
required: true
|
|
|
|
default: no default
|
|
|
|
choices:
|
|
|
|
- machine
|
|
|
|
- process
|
|
|
|
- user
|
|
|
|
author: "Jon Hawkesworth (@jhawkesworth)"
|
2017-01-18 04:21:04 +00:00
|
|
|
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.
|
2017-01-19 01:57:33 +00:00
|
|
|
- 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
|
2015-10-07 04:25:28 +00:00
|
|
|
and in again before they become available.
|
2015-05-14 23:29:53 +00:00
|
|
|
'''
|
|
|
|
|
2017-01-19 01:57:33 +00:00
|
|
|
EXAMPLES = r'''
|
2017-06-08 16:39:10 +00:00
|
|
|
- name: Set an environment variable for all users
|
2015-05-14 23:29:53 +00:00
|
|
|
win_environment:
|
|
|
|
state: present
|
|
|
|
name: TestVariable
|
2017-01-19 01:57:33 +00:00
|
|
|
value: Test value
|
2015-05-14 23:29:53 +00:00
|
|
|
level: machine
|
2017-06-08 16:39:10 +00:00
|
|
|
|
|
|
|
- name: Remove an environment variable for the current user
|
2015-05-14 23:29:53 +00:00
|
|
|
win_environment:
|
|
|
|
state: absent
|
|
|
|
name: TestVariable
|
|
|
|
level: user
|
|
|
|
'''
|
2017-06-08 16:39:10 +00:00
|
|
|
|
|
|
|
RETURN = r'''
|
|
|
|
before_value:
|
|
|
|
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
|
|
|
|
returned: always
|
|
|
|
type: string
|
|
|
|
sample: C:\Program Files\jdk1.8
|
|
|
|
'''
|