community.general/lib/ansible/modules/windows/win_feature.ps1

160 lines
4.9 KiB
PowerShell
Raw Normal View History

#!powershell
# This file is part of Ansible.
#
# Copyright 2014, Paul Durivage <paul.durivage@rackspace.com>
#
# 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
Import-Module Servermanager;
$params = Parse-Args $args;
2015-09-17 18:44:36 +00:00
$result = New-Object PSObject -Property @{
changed = $false
}
$name = Get-Attr $params "name" -failifempty $true
2016-01-07 18:36:32 +00:00
$name = $name -split ',' | % { $_.Trim() }
$state = Get-Attr $params "state" "present"
$state = $state.ToString().ToLower()
If (($state -ne 'present') -and ($state -ne 'absent')) {
Fail-Json $result "state is '$state'; must be 'present' or 'absent'"
}
$restart = Get-Attr $params "restart" $false | ConvertTo-Bool
$includesubfeatures = Get-Attr $params "include_sub_features" $false | ConvertTo-Bool
$includemanagementtools = Get-Attr $params "include_management_tools" $false | ConvertTo-Bool
2016-01-07 18:36:32 +00:00
$source = Get-Attr $params "source" $false
# Determine which cmdlets we need to work with. Then we can set options appropriate for the cmdlet
$installWF= $false
$addWF = $false
try {
# We can infer uninstall/remove if install/add cmdlets exist
if (Get-Command "Install-WindowsFeature" -ErrorAction SilentlyContinue) {
$addCmdlet = "Install-WindowsFeature"
$removeCmdlet = "Uninstall-WindowsFeature"
$installWF = $true
}
elseif (Get-Command "Add-WindowsFeature" -ErrorAction SilentlyContinue) {
$addCmdlet = "Add-WindowsFeature"
$removeCmdlet = "Remove-WindowsFeature"
$addWF = $true
}
else {
throw [System.Exception] "Not supported on this version of Windows"
2016-01-07 18:36:32 +00:00
}
}
catch {
Fail-Json $result $_.Exception.Message
}
If ($state -eq "present") {
2016-01-07 18:36:32 +00:00
# Base params to cover both Add/Install-WindowsFeature
2016-01-07 18:36:32 +00:00
$InstallParams = @{
"Name"=$name;
"Restart"=$Restart;
"IncludeAllSubFeature"=$includesubfeatures;
"ErrorAction"="SilentlyContinue"
}
# IncludeManagementTools and source are options only for Install-WindowsFeature
if ($installWF) {
if ($source) {
if (!(test-path $source)) {
Fail-Json $result "Failed to find source path $source"
2016-01-07 18:36:32 +00:00
}
$InstallParams.add("Source",$source)
2015-09-17 18:44:36 +00:00
}
if ($IncludeManagementTools) {
$InstallParams.add("IncludeManagementTools",$includemanagementtools)
2015-09-17 18:44:36 +00:00
}
}
try {
$featureresult = Invoke-Expression "$addCmdlet @InstallParams"
}
catch {
Fail-Json $result $_.Exception.Message
}
}
2015-09-17 18:44:36 +00:00
ElseIf ($state -eq "absent") {
$UninstallParams = @{
"Name"=$name;
"Restart"=$Restart;
"ErrorAction"="SilentlyContinue"
}
try {
$featureresult = Invoke-Expression "$removeCmdlet @UninstallParams"
}
catch {
Fail-Json $result $_.Exception.Message
}
}
# Loop through results and create a hash containing details about
# each role/feature that is installed/removed
$installed_features = @()
#$featureresult.featureresult is filled if anything was changed
2015-09-17 18:44:36 +00:00
If ($featureresult.FeatureResult)
{
ForEach ($item in $featureresult.FeatureResult) {
2015-09-17 18:44:36 +00:00
$message = @()
ForEach ($msg in $item.Message) {
$message += New-Object PSObject -Property @{
message_type = $msg.MessageType.ToString()
error_code = $msg.ErrorCode
text = $msg.Text
}
}
$installed_features += New-Object PSObject -Property @{
id = $item.Id
display_name = $item.DisplayName
2015-09-17 18:44:36 +00:00
message = $message
restart_needed = $item.RestartNeeded.ToString() | ConvertTo-Bool
skip_reason = $item.SkipReason.ToString()
2015-09-17 18:44:36 +00:00
success = $item.Success.ToString() | ConvertTo-Bool
}
}
$result.changed = $true
}
2015-09-17 18:44:36 +00:00
Set-Attr $result "feature_result" $installed_features
Set-Attr $result "success" ($featureresult.Success.ToString() | ConvertTo-Bool)
Set-Attr $result "exitcode" $featureresult.ExitCode.ToString()
Set-Attr $result "restart_needed" ($featureresult.RestartNeeded.ToString() | ConvertTo-Bool)
2015-09-17 18:44:36 +00:00
If ($result.success) {
Exit-Json $result
}
ElseIf ($state -eq "present") {
Fail-Json $result "Failed to add feature"
}
Else {
Fail-Json $result "Failed to remove feature"
}