Fix a typo in win_iis_webapplication.ps1 (#27417)
introduced with https://github.com/ansible/ansible/pull/26082/files#diff-bd862e2bbcb44c9c332df7b6cacf6adaR74
This commit is contained in:
parent
c594f1e1c9
commit
0ebc80cbd6
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ try {
|
|||
|
||||
# Remove application
|
||||
if ($state -eq 'absent' -and $application) {
|
||||
$application = Remove-WebApplication -Site $site -Name $name $WhatIf:$check_mode
|
||||
$application = Remove-WebApplication -Site $site -Name $name -WhatIf:$check_mode
|
||||
$result.changed = $true
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue