summaryrefslogtreecommitdiff
path: root/windows/win_environment.ps1
diff options
context:
space:
mode:
authorJon Hawkesworth <jhawkesworth@users.noreply.github.com>2015-05-15 00:29:53 +0100
committerJon Hawkesworth <jhawkesworth@users.noreply.github.com>2015-05-15 00:29:53 +0100
commit44fa32f2dcba8bcf93a68861434802094555bcfa (patch)
treef90bdb4ed4e100441e8551a4c27c6abcb9b411cb /windows/win_environment.ps1
parent8c8a0e1b8dc4b51721b313fcabb9bb5bd8a6d26f (diff)
downloadansible-modules-extras-44fa32f2dcba8bcf93a68861434802094555bcfa.tar.gz
Add win_environment module
Diffstat (limited to 'windows/win_environment.ps1')
-rw-r--r--windows/win_environment.ps169
1 files changed, 69 insertions, 0 deletions
diff --git a/windows/win_environment.ps1 b/windows/win_environment.ps1
new file mode 100644
index 00000000..3dc936f1
--- /dev/null
+++ b/windows/win_environment.ps1
@@ -0,0 +1,69 @@
+#!powershell
+# This file is part of Ansible
+#
+# Copyright 2015, J Hawkesworth @jhawkesworth <figs@unity.demon.co.uk>
+#
+# 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/>.
+
+# WANT_JSON
+# POWERSHELL_COMMON
+
+$params = Parse-Args $args;
+$result = New-Object PSObject;
+Set-Attr $result "changed" $false;
+
+If ($params.state) {
+ $state = $params.state.ToString().ToLower()
+ If (($state -ne 'present') -and ($state -ne 'absent') ) {
+ Fail-Json $result "state is '$state'; must be 'present', or 'absent'"
+ }
+} else {
+ $state = 'present'
+}
+
+If ($params.name)
+{
+ $name = $params.name
+} else {
+ Fail-Json $result "missing required argument: name"
+}
+
+$value = $params.value
+
+If ($params.level) {
+ $level = $params.level.ToString().ToLower()
+ If (( $level -ne 'machine') -and ( $level -ne 'user' ) -and ( $level -ne 'process')) {
+ Fail-Json $result "level is '$level'; must be 'machine', 'user', or 'process'"
+ }
+}
+
+$before_value = [Environment]::GetEnvironmentVariable($name, $level)
+
+if ($state -eq "present" ) {
+ [Environment]::SetEnvironmentVariable($name, $value, $level)
+} Elseif ($state -eq "absent") {
+ [Environment]::SetEnvironmentVariable($name, $null, $level)
+}
+
+$after_value = [Environment]::GetEnvironmentVariable($name, $level)
+
+Set-Attr $result "name" $name;
+Set-Attr $result "before_value" $before_value;
+Set-Attr $result "value" $after_value;
+Set-Attr $result "level" $level;
+if ($before_value -ne $after_value) {
+ Set-Attr $result "changed" $true;
+}
+
+Exit-Json $result;