Puppet Class: ibmwasihs

Defined in:
manifests/init.pp

Overview

Class: ibmwasihs

This module manages ibmwasihs

Parameters: none

Actions:

Requires: see Modulefile

Sample Usage:

Parameters:

  • responseFile (Any) (defaults to: '/tmp/ihs-resposefile.txt')
  • traceLevel (Any) (defaults to: 'UNSET')
  • traceFormat (Any) (defaults to: 'UNSET')
  • installType (Any) (defaults to: 'UNSET')
  • silentInstallLicenseAcceptance (Any) (defaults to: 'UNSET')
  • allowNonRootSilentInstall (Any) (defaults to: 'UNSET')
  • httpPort (Any) (defaults to: 'UNSET')
  • adminPort (Any) (defaults to: 'UNSET')
  • installHttpService (Any) (defaults to: 'UNSET')
  • installAdminService (Any) (defaults to: 'UNSET')
  • httpServiceName (Any) (defaults to: 'UNSET')
  • adminServiceName (Any) (defaults to: 'UNSET')
  • winServiceLogOnAs (Any) (defaults to: 'UNSET')
  • winServiceUser (Any) (defaults to: 'UNSET')
  • winServiceStartType (Any) (defaults to: 'UNSET')
  • createAdminAuth (Any) (defaults to: 'UNSET')
  • runSetupAdmin (Any) (defaults to: 'UNSET')
  • createAdminUserGroup (Any) (defaults to: 'UNSET')
  • installPlugin (Any) (defaults to: 'UNSET')
  • webserverDefinition (Any) (defaults to: 'UNSET')
  • disableOSPrereqChecking (Any) (defaults to: 'UNSET')
  • responseFileBackup (Any) (defaults to: '/tmp/ihs-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
144
145
146
147
148
149
# File 'manifests/init.pp', line 13

class ibmwasihs(
  $responseFile                    = '/tmp/ihs-resposefile.txt',
  $traceLevel                      = 'UNSET',
  $traceFormat                     = 'UNSET',
  $installType                     = 'UNSET',
  $silentInstallLicenseAcceptance  = 'UNSET',
  $allowNonRootSilentInstall       = 'UNSET',
  $httpPort                        = 'UNSET',
  $adminPort                       = 'UNSET',
  $installHttpService              = 'UNSET',
  $installAdminService             = 'UNSET',
  $httpServiceName                 = 'UNSET',
  $adminServiceName                = 'UNSET',
  $winServiceLogOnAs               = 'UNSET',
  $winServiceUser                  = 'UNSET',
  $winServiceStartType             = 'UNSET',
  $createAdminAuth                 = 'UNSET',
  $runSetupAdmin                   = 'UNSET',
  $createAdminUserGroup            = 'UNSET',
  $installPlugin                   = 'UNSET',
  $webserverDefinition             = 'UNSET',
  $disableOSPrereqChecking         = 'UNSET',
  $responseFileBackup              = '/tmp/ihs-installation-location.txt'
) {
		class { "ibmwasihs::precheck": }
		include ibmwasihs::params
		exec{'Creating Response file':
		      command   => "cat /tmp/ihs-details.txt > ${responseFile}",
		      require   => File['ihs-details.txt'],
		      provider  => shell,
		      logoutput => true
		}
		$traceLevel_real = $traceLevel ? {
		    'UNSET' => $::ibmwasihs::params::traceLevel,
		    default => $traceLevel,
		  }
		$traceFormat_real = $traceFormat ? {
		    'UNSET' => $::ibmwasihs::params::traceFormat,
		    default => $traceFormat,
		  }
		$installType_real = $installType ? {
		    'UNSET' => $::ibmwasihs::params::installType,
		    default => $installType,
      }
    $silentInstallLicenseAcceptance_real = $silentInstallLicenseAcceptance ? {
		    'UNSET' => $::ibmwasihs::params::silentInstallLicenseAcceptance,
		    default => $silentInstallLicenseAcceptance,
      }
    $allowNonRootSilentInstall_real = $allowNonRootSilentInstall ? {
		    'UNSET' => $::ibmwasihs::params::allowNonRootSilentInstall,
		    default => $allowNonRootSilentInstall,
      }
    $httpPort_real = $httpPort ? {
		    'UNSET' => $::ibmwasihs::params::httpPort,
		    default => $httpPort,
      }
    $adminPort_real = $adminPort ? {
		    'UNSET' => $::ibmwasihs::params::adminPort,
		    default => $adminPort,
      }
    $installHttpService_real = $installHttpService ? {
		    'UNSET' => $::ibmwasihs::params::installHttpService,
		    default => $installHttpService,
      }  
    $installAdminService_real = $installAdminService ? {
		    'UNSET' => $::ibmwasihs::params::installAdminService,
		    default => $installAdminService,
      }
    $httpServiceName_real = $httpServiceName ? {
		    'UNSET' => $::ibmwasihs::params::httpServiceName,
		    default => $httpServiceName,
      }
    $adminServiceName_real = $adminServiceName ? {
		    'UNSET' => $::ibmwasihs::params::adminServiceName,
		    default => $adminServiceName,
      }
    $winServiceLogOnAs_real = $winServiceLogOnAs ? {
		    'UNSET' => $::ibmwasihs::params::winServiceLogOnAs,
		    default => $winServiceLogOnAs,
      }
    $winServiceUser_real = $winServiceUser ? {
		    'UNSET' => $::ibmwasihs::params::winServiceUser,
		    default => $winServiceUser,
      }
    $winServiceStartType_real = $winServiceStartType ? {
		    'UNSET' => $::ibmwasihs::params::winServiceStartType,
		    default => $winServiceStartType,
      }
    $createAdminAuth_real = $createAdminAuth ? {
		    'UNSET' => $::ibmwasihs::params::createAdminAuth,
		    default => $createAdminAuth,
      }
    $runSetupAdmin_real = $runSetupAdmin ? {
		    'UNSET' => $::ibmwasihs::params::runSetupAdmin,
		    default => $runSetupAdmin,
      }
    $createAdminUserGroup_real = $createAdminUserGroup ? {
		    'UNSET' => $::ibmwasihs::params::createAdminUserGroup,
		    default => $createAdminUserGroup,
      }
    $installPlugin_real = $installPlugin ? {
		    'UNSET' => $::ibmwasihs::params::installPlugin,
		    default => $installPlugin,
      }
    $disableOSPrereqChecking_real = $disableOSPrereqChecking ? {
        'UNSET' => $::ibmwasihs::params::disableOSPrereqChecking,
        default => $disableOSPrereqChecking 
    }
		file_line{'Appending other variables to the file':
		      require => Exec['Creating Response file'],
		      path    => "${responseFile}",
		      line    => "-OPT traceLevel=${traceLevel_real}\n-OPT traceFormat=${traceFormat_real}\n-OPT installType=${installType_real}\n-OPT silentInstallLicenseAcceptance=${silentInstallLicenseAcceptance_real}\n-OPT disableOSPrereqChecking=${disableOSPrereqChecking_real}\n-OPT allowNonRootSilentInstall=${allowNonRootSilentInstall_real}\n-OPT httpPort=${httpPort_real}\n-OPT adminPort=${adminPort_real}\n-OPT installHttpService=${installHttpService_real}\n-OPT installAdminService=${installAdminService_real}\n-OPT httpServiceName=${httpServiceName_real}\n-OPT adminServiceName=${adminServiceName_real}\n-OPT winServiceLogOnAs=${winServiceLogOnAs_real}\n-OPT winServiceUser=${winServiceUser_real}\n-OPT winServiceStartType=${winServiceStartType_real}\n-OPT createAdminAuth=${createAdminAuth_real}\n-OPT runSetupAdmin=${runSetupAdmin_real}\n-OPT createAdminUserGroup=${createAdminUserGroup_real}\n-OPT installPlugin=${installPlugin_real}"
		  }
		exec{'Installation of IHS':
		      require   => File_line['Appending other variables to the file'],
		      command   => "./install -options ${responseFile} -silent",
		      onlyif    => '[ $( $( echo -e $( cat /tmp/ihs-details.txt | grep installLocation | awk -F "=" \'{print $2}\' )\'/bin/apachectl\' ) -v | grep -c IBM_HTTP_Server ) -eq 0 ]',
          provider  => shell,
          cwd       => '/opt/IHS/',
          logoutput => true,
          timeout   => 0
      }
    exec{'Remove ihs-detailsfile':
          command   => "rm -f /tmp/ihs-details.txt && cp ${responseFile} /usr/bin/ihs-installed.txt",
          require   => Exec['Installation of IHS'],
          provider  => shell,
          logoutput => true,
          timeout   => 0
      }
    exec{'Remove installer Files':
          command   => "rm -f /opt/ihs-installer.tar.gz && cd /opt/ && rm -rf IHS JDK plugin && rm -f ${responseFile}",
          require   => Exec['Remove ihs-detailsfile'],
          provider  => shell,
          logoutput => true,
          timeout   => 0
      }
}