Skip to content

Commit

Permalink
correct behaviour of win_iis_webapplication when no applicationpool i…
Browse files Browse the repository at this point in the history
…s specified (#61227)

* correct behaviour of win_iis_webapplication when no applicationpool is specified

* documentation for win_iis_webapplication apppool change
  • Loading branch information
jn-bedag authored and ansibot committed Sep 16, 2019
1 parent 99796df commit c7662d8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
@@ -0,0 +1,2 @@
minor_changes:
- win_iis_webapplication - now uses the current application pool of the website instead of the DefaultAppPool if none was specified.
6 changes: 6 additions & 0 deletions lib/ansible/modules/windows/win_iis_webapplication.ps1
Expand Up @@ -27,6 +27,12 @@ if ($null -eq (Get-Module "WebAdministration" -ErrorAction SilentlyContinue)) {

# Application info
$application = Get-WebApplication -Site $site -Name $name
$website = Get-Website -Name $site

# Set ApplicationPool to current if not specified
if (!$application_pool) {
$application_pool = $website.applicationPool
}

try {
# Add application
Expand Down
1 change: 1 addition & 0 deletions lib/ansible/modules/windows/win_iis_webapplication.py
Expand Up @@ -40,6 +40,7 @@
application_pool:
description:
- The application pool in which the new site executes.
- If not specified, the application pool of the current website will be used.
type: str
seealso:
- module: win_iis_virtualdirectory
Expand Down

0 comments on commit c7662d8

Please sign in to comment.