1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# File 'manifests/params.pp', line 1
class ibmwas::params{
$disableOSPrereqChecking = true
$silentInstallLicenseAcceptance = true
$disableNonBlockingPrereqChecking = true
$checkFilePermissions = true
$installType = 'installNew'
$installLocation = '/app/IBM/WebSphere/AppServer'
$cimSelected = false
$traceFormat = 'ALL'
$traceLevel = 'INFO'
if $::ibmwas::precheck::configureProfile_real {
$prof_validatePorts = false
$prof_defaultPorts = true
$prof_signingCertValidityPeriod = '25'
$prof_personalCertValidityPeriod = '15'
$prof_omitAction = 'samplesInstallAndConfig'
$feature = 'samplesSelected'
}
}
|