This commit is contained in:
jhejda@wmpromus.com 2019-05-23 11:56:59 +02:00
parent aee4c1e825
commit 8fc6668336
4 changed files with 5 additions and 6 deletions

View File

@ -6,7 +6,7 @@
# Date: April 2018 # Date: April 2018
### ###
class iis::iis ( class iis_demo::iis (
) { ) {

View File

@ -6,11 +6,11 @@
# Date: April 2018 # Date: April 2018
### ###
class iis::iis_prereqs ( class iis_demo::iis_prereqs (
) { ) {
include chocolatey include chocolatey
include iis::iis include iis_demo::iis
dsc_windowsfeature { '.NET Framework 4.5': dsc_windowsfeature { '.NET Framework 4.5':
dsc_ensure => 'present', dsc_ensure => 'present',

View File

@ -6,7 +6,7 @@
# Date: April 2018 # Date: April 2018
### ###
define iis ( define iis_demo (
String[1] $app_pool_name = 'TestAppPool', String[1] $app_pool_name = 'TestAppPool',
String[1] $service_account_password = undef, String[1] $service_account_password = undef,
String[1] $service_account_username = undef, String[1] $service_account_username = undef,
@ -15,10 +15,9 @@ define iis (
String[1] $path = 'C:\\inetpub\\wwwroot\\Test', String[1] $path = 'C:\\inetpub\\wwwroot\\Test',
String[1] $logpath = 'C:\\inetpub\\logs\\Test', String[1] $logpath = 'C:\\inetpub\\logs\\Test',
) { ) {
include iis::iis include iis_demo::iis
############################################################################ ############################################################################
# Create application pool and applicationpool # # Create application pool and applicationpool #