mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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
|
# Remove application
|
||||||
if ($state -eq 'absent' -and $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
|
$result.changed = $true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue