1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix win_iis_webapppool module to not null ref when removing an apppool using PS4

This commit is contained in:
Marcin Dobosz 2015-10-16 13:48:32 -07:00 committed by Matt Clay
parent 092c3ccbde
commit 6f68db5c1a

View file

@ -101,12 +101,15 @@ try {
# Result
$pool = Get-Item IIS:\AppPools\$name
$result.info = @{
name = $pool.Name
state = $pool.State
attributes = New-Object psobject @{}
};
$pool.Attributes | ForEach { $result.info.attributes.Add($_.Name, $_.Value)};
if ($pool)
{
$result.info = @{
name = $pool.Name
state = $pool.State
attributes = New-Object psobject @{}
};
$pool.Attributes | ForEach { $result.info.attributes.Add($_.Name, $_.Value)};
}
Exit-Json $result