win_iis_webapppool: do not output some cmdlet outputs (#41884)

(cherry picked from commit abfcc35e6f)
pull/41932/merge
Jordan Borean 7 years ago committed by Matt Clay
parent 12d15b7dd6
commit cfb4a8236f

@ -0,0 +1,2 @@
bugfixes:
- win_iis_webapppool - redirect some module output to null so Ansible can read the output JSON https://github.com/ansible/ansible/issues/40874

@ -189,7 +189,7 @@ if ($state -eq "absent") {
if (-not $pool) {
if (-not $check_mode) {
try {
New-WebAppPool -Name $name
New-WebAppPool -Name $name > $null
} catch {
Fail-Json $result "Failed to create new Web App Pool $($name): $($_.Exception.Message)"
}
@ -220,7 +220,7 @@ if ($state -eq "absent") {
}
foreach ($value in $new_value) {
try {
New-ItemProperty -Path IIS:\AppPools\$name -Name $attribute_key -Value @{value=$value} -WhatIf:$check_mode
New-ItemProperty -Path IIS:\AppPools\$name -Name $attribute_key -Value @{value=$value} -WhatIf:$check_mode > $null
} catch {
Fail-Json -obj $result -message "Failed to add new attribute to Web App Pool $name. Attribute: $attribute_key, Value: $value, Exception: $($_.Exception.Message)"
}
@ -241,7 +241,7 @@ if ($state -eq "absent") {
if ($state -eq "started" -or $state -eq "restarted") {
if (-not $check_mode) {
try {
Start-WebAppPool -Name $name
Start-WebAppPool -Name $name > $null
} catch {
Fail-Json $result "Failed to start Web App Pool $($name): $($_.Exception.Message)"
}
@ -252,7 +252,7 @@ if ($state -eq "absent") {
if ($state -eq "stopped") {
if (-not $check_mode) {
try {
Stop-WebAppPool -Name $name
Stop-WebAppPool -Name $name > $null
} catch {
Fail-Json $result "Failed to stop Web App Pool $($name): $($_.Exception.Message)"
}
@ -261,7 +261,7 @@ if ($state -eq "absent") {
} elseif ($state -eq "restarted") {
if (-not $check_mode) {
try {
Restart-WebAppPool -Name $name
Restart-WebAppPool -Name $name > $null
} catch {
Fail-Json $result "Failed to restart Web App Pool $($name): $($_.Exception.Message)"
}

Loading…
Cancel
Save