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

pull/18777/head
Marcin Dobosz 9 years ago committed by Matt Clay
parent 092c3ccbde
commit 6f68db5c1a

@ -101,6 +101,8 @@ try {
# Result
$pool = Get-Item IIS:\AppPools\$name
if ($pool)
{
$result.info = @{
name = $pool.Name
state = $pool.State
@ -108,5 +110,6 @@ $result.info = @{
};
$pool.Attributes | ForEach { $result.info.attributes.Add($_.Name, $_.Value)};
}
Exit-Json $result

Loading…
Cancel
Save