Puppet Class: ibmwas

Defined in:
manifests/init.pp

Overview

Class: ibmwas

This module manages ibmwas

Parameters: none

Actions:

Requires: see Modulefile

Sample Usage:

Parameters:

  • responseFile (Any) (defaults to: '/tmp/was-resposefile.txt')
  • disableOSPrereqChecking (Any) (defaults to: 'UNSET')
  • silentInstallLicenseAcceptance (Any) (defaults to: 'UNSET')
  • disableNonBlockingPrereqChecking (Any) (defaults to: 'UNSET')
  • checkFilePermissions (Any) (defaults to: 'UNSET')
  • installType (Any) (defaults to: 'UNSET')
  • installLocation (Any) (defaults to: 'UNSET')
  • cimSelected (Any) (defaults to: 'UNSET')
  • traceFormat (Any) (defaults to: 'UNSET')
  • traceLevel (Any) (defaults to: 'UNSET')
  • prof_validatePorts (Any) (defaults to: 'UNSET')
  • prof_defaultPorts (Any) (defaults to: 'UNSET')
  • prof_signingCertValidityPeriod (Any) (defaults to: 'UNSET')
  • prof_personalCertValidityPeriod (Any) (defaults to: 'UNSET')
  • prof_omitAction (Any) (defaults to: 'UNSET')
  • feature (Any) (defaults to: 'UNSET')
  • responseFileBackup (Any) (defaults to: '/tmp/was-installation-location.txt')


13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# File 'manifests/init.pp', line 13

class ibmwas(
    $responseFile                     = '/tmp/was-resposefile.txt',
	  $disableOSPrereqChecking          = 'UNSET',
	  $silentInstallLicenseAcceptance   = 'UNSET',
	  $disableNonBlockingPrereqChecking = 'UNSET',
	  $checkFilePermissions             = 'UNSET',
	  $installType                      = 'UNSET',
	  $installLocation                  = 'UNSET',
	  $cimSelected                      = 'UNSET',
	  $traceFormat                      = 'UNSET',
	  $traceLevel                       = 'UNSET',
	  $prof_validatePorts               = 'UNSET',
	  $prof_defaultPorts                = 'UNSET',
	  $prof_signingCertValidityPeriod   = 'UNSET',
	  $prof_personalCertValidityPeriod  = 'UNSET',
	  $prof_omitAction                  = 'UNSET',
	  $feature                          = 'UNSET',
	  $responseFileBackup              = '/tmp/was-installation-location.txt'
) {
  class { "ibmwas::precheck": }
  include ibmwas::params
  if $::ibmwas::precheck::installStatus {
  exec{'Creating Response file':
    command   => "cat /tmp/was-details.txt > ${responseFile}",
    require   => File['was-details.txt'],
    provider  => shell,
    logoutput => true
    }
  $disableOSPrereqChecking_real = $disableOSPrereqChecking ? {
    'UNSET' => $::ibmwas::params::disableOSPrereqChecking,
    default => $disableOSPrereqChecking,
    }
  $silentInstallLicenseAcceptance_real = $silentInstallLicenseAcceptance ? {
    'UNSET' => $::ibmwas::params::silentInstallLicenseAcceptance,
    default => $silentInstallLicenseAcceptance,
    }
  $disableNonBlockingPrereqChecking_real = $disableNonBlockingPrereqChecking ? {
    'UNSET' => $::ibmwas::params::disableNonBlockingPrereqChecking,
    default => $disableNonBlockingPrereqChecking,
    }
  $checkFilePermissions_real = $checkFilePermissions ? {
    'UNSET' => $::ibmwas::params::checkFilePermissions,
    default => $checkFilePermissions,
    }
  $installType_real = $installType ? {
    'UNSET' => $::ibmwas::params::installType,
    default => $installType,
    }
  $installLocation_real = $installLocation ? {
    'UNSET' => $::ibmwas::params::installLocation,
    default => $installLocation,
    }
  $cimSelected_real = $cimSelected ? {
    'UNSET' => $::ibmwas::params::cimSelected,
    default => $cimSelected,
    }
  $traceFormat_real = $traceFormat ? {
    'UNSET' => $::ibmwas::params::traceFormat,
    default => $traceFormat,
    }
  $traceLevel_real = $traceLevel ? {
    'UNSET' => $::ibmwas::params::traceLevel,
    default => $traceLevel,
    }
  if $::ibmwas::precheck::configureProfile {
		  $prof_validatePorts_real = $prof_validatePorts ? {
		    'UNSET' => $::ibmwas::params::prof_validatePorts,
		    default => $prof_validatePorts,
		    }
		  $prof_defaultPorts_real = $prof_defaultPorts ? {
		    'UNSET' => $::ibmwas::params::prof_defaultPorts,
		    default => $prof_defaultPorts,
		    }
		  $prof_signingCertValidityPeriod_real = $prof_signingCertValidityPeriod ? {
		    'UNSET' => $::ibmwas::params::prof_signingCertValidityPeriod,
		    default => $prof_signingCertValidityPeriod,
		    }
		  $prof_personalCertValidityPeriod_real = $prof_personalCertValidityPeriod ? {
		    'UNSET' => $::ibmwas::params::prof_personalCertValidityPeriod,
		    default => $prof_personalCertValidityPeriod,
		    }
		  $prof_omitAction_real = $prof_omitAction ? {
		    'UNSET' => $::ibmwas::params::prof_omitAction,
		    default => $prof_omitAction,
		    }
		  $feature_real = $feature ? {
        'UNSET' => $::ibmwas::params::feature,
        default => $feature,
        }      
		}
		  
  if $::ibmwas::precheck::configureProfile {
	  file_line{'Appending other variables to the file':
	          require => Exec['Creating Response file'],
	          path    => "${responseFile}",
	          line    => "\n-OPT disableOSPrereqChecking=${disableOSPrereqChecking_real}\n-OPT silentInstallLicenseAcceptance=${silentInstallLicenseAcceptance_real}\n-OPT disableNonBlockingPrereqChecking=${disableNonBlockingPrereqChecking_real}\n-OPT checkFilePermissions=${checkFilePermissions_real}\n-OPT installType=${installType_real}\n-OPT installLocation=${installLocation_real}\n-OPT cimSelected=${cimSelected_real}\n-OPT traceFormat=${traceFormat_real}\n-OPT traceLevel=${traceLevel_real}\n-OPT PROF_validatePorts=${prof_validatePorts_real}\n-OPT PROF_defaultPorts=${prof_defaultPorts_real}\n-OPT PROF_signingCertValidityPeriod=${prof_signingCertValidityPeriod_real}\n-OPT PROF_personalCertValidityPeriod=${prof_personalCertValidityPeriod_real}\n-OPT PROF_omitAction=${prof_omitAction_real}\n-OPT feature=${feature_real}"
	      }
	  }    
	else {
	  file_line{'Appending other variables to the file':
            require => Exec['Creating Response file'],
            path    => "${responseFile}",
            line    => "\n-OPT disableOSPrereqChecking=${disableOSPrereqChecking_real}\n-OPT silentInstallLicenseAcceptance=${silentInstallLicenseAcceptance_real}\n-OPT disableNonBlockingPrereqChecking=${disableNonBlockingPrereqChecking_real}\n-OPT checkFilePermissions=${checkFilePermissions_real}\n-OPT installType=${installType_real}\n-OPT installLocation=${installLocation_real}\n-OPT cimSelected=${cimSelected_real}\n-OPT traceFormat=${traceFormat_real}\n-OPT traceLevel=${traceLevel_real}"
        }
	  }
    exec{'Installation of WAS':
          require   => File_line['Appending other variables to the file'],
          command   => "./install -options ${responseFile} -silent",
          onlyif    => '[ $( locate profileRegistry.xml | grep -E "\/app\/IBM\/WebSphere\/AppServer\/" | wc -l ) -eq 0 ]',
          provider  => shell,
          cwd       => '/opt/WAS/',
          logoutput => true,
          timeout   => 0
      }
    exec{'Remove was-detailsfile':
          command   => "rm -f /tmp/was-details.txt && cp ${responseFile} /usr/bin/was-installed.txt",
          require   => Exec['Installation of WAS'],
          provider  => shell,
          logoutput => true,
          timeout   => 0
      }
    exec{'Remove installer Files':
          command   => "rm -f /opt/was-installer.tar.gz && cd /opt/ && rm -rf WAS JDK launchpad UpdateInstaller && rm -f ${responseFile}",
          require   => Exec['Remove was-detailsfile'],
          provider  => shell,
          logoutput => true,
          timeout   => 0
      }
      
  }
}