Fix win_iis_webapppool module to not null ref when removing an apppool using PS4
This commit is contained in:
parent
2850c7acb8
commit
aee09745d3
1 changed files with 10 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue