Puppet Class: ibmwas::precheck
- Defined in:
- manifests/precheck.pp
Overview
[View source]
1 2 3 4 5 6 7 8 9 10 11 12 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 |
# File 'manifests/precheck.pp', line 1
class ibmwas::precheck(
$responseFileBackup = '/usr/bin/was-installed.txt',
$sourcePath = 'puppet:///modules/ibmwas',
$configureProfile = 'UNSET',
$isInstalled = "$::check_installed"
){
$installableProfileType = $::install_profile_type
case $installableProfileType {
'cell': {
file {'was-details.txt':
ensure => present,
path => '/tmp',
mode => '0777',
validate_cmd => '[ $( grep -i -c profileType % ) -eq 1 ] && [ $( grep -i -c PROF_profilePath % ) -eq 1 ] && [ $( grep -i -c PROF_dmgrProfileName % ) -eq 1 ] && [ $( grep -i -c PROF_appServerProfileName % ) -eq 1 ] && [ $( grep -i -c PROF_isDefault % ) ] && [ $( grep -i -c PROF_winserviceCheck % ) ] && [ $( grep -i -c PROF_enableService % ) ] && [ $( grep -i -c PROF_webServerCheck % ) ] && [ $( grep -i -c PROF_enableAdminSecurity % ) ] && [ $( grep -i -c PROF_adminUserName % ) ] && [ $( grep -i -c PROF_adminPassword % ) ]',
}
$configureProfile_real = $configureProfile ? {
'UNSET' => true,
default => false
}
}
'standAlone': {
file {'was-details.txt':
ensure => present,
path => '/tmp',
mode => '0777',
validate_cmd => '[ $( grep -i -c profileType % ) -eq 1 ] && [ $( grep -i -c PROF_templatePath % ) -eq 1 ] && [ $( grep -i -c PROF_profilePath % ) -eq 1 ] && [ $( grep -i -c PROF_profileName % ) -eq 1 ] && [ $( grep -i -c PROF_isDefault % ) -eq 1 ] && [ $( grep -i -c PROF_serverName % ) -eq 1 ] && [ $( grep -i -c PROF_isDeveloperServer % ) -eq 1 ] && [ $( grep -i -c PROF_enableService % ) -eq 1 ] && [ $( grep -i -c PROF_webServerCheck % ) -eq 1 ] && [ $( grep -i -c PROF_enableAdminSecurity % ) -eq 1 ] && [ $( grep -i -c PROF_adminUserName % ) -eq 1 ] && [ $( grep -i -c PROF_adminPassword % ) -eq 1 ]',
}
$configureProfile_real = $configureProfile ? {
'UNSET' => true,
default => false
}
}
'custom': {
file {'was-details.txt':
ensure => present,
path => '/tmp',
mode => '0777',
validate_cmd => '[ $( grep -i -c profileType % ) -eq 1 ] && [ $( grep -i -c PROF_templatePath % ) -eq 1 ] && [ $( grep -i -c PROF_profilePath % ) -eq 1 ] && [ $( grep -i -c PROF_profileName % ) -eq 1 ] && [ $( grep -i -c PROF_isDefault % ) -eq 1 ] && [ $( grep -i -c PROF_federateLater % ) -eq 1 ] && [ $( grep -i -c PROF_dmgrHost % ) -eq 1 ] && [ $( grep -i -c PROF_dmgrPort % ) -eq 1 ] && [ $( grep -i -c PROF_dmgrAdminUserName % ) -eq 1 ] && [ $( grep -i -c PROF_dmgrAdminPassword % ) -eq 1 ]',
}
$configureProfile_real = $configureProfile ? {
'UNSET' => true,
default => false
}
}
'deploymentManager': {
file {'was-details.txt':
ensure => present,
path => '/tmp',
mode => '0777',
validate_cmd => '[ $( grep -i -c profileType % ) -eq 1 ] && [ $( grep -i -c PROF_templatePath % ) -eq 1 ] && [ $( grep -i -c PROF_profilePath % ) -eq 1 ] && [ $( grep -i -c PROF_profileName % ) -eq 1 ] && [ $( grep -i -c PROF_isDefault % ) -eq 1 ] && [ $( grep -i -c PROF_serverType % ) -eq 1 ] && [ $( grep -i -c PROF_enableService % ) -eq 1 ] && [ $( grep -i -c PROF_enableAdminSecurity % ) -eq 1 ] && [ $( grep -i -c PROF_adminUserName % ) -eq 1 ] && [ $( grep -i -c PROF_adminPassword % ) -eq 1 ]',
}
$configureProfile_real = $configureProfile ? {
'UNSET' => true,
default => false
}
}
default: {
$isInstalled_real = $isInstalled ? {
'notfound' => true,
default => false
}
if $isInstalled_real {
$configureProfile_real = $configureProfile ? {
'UNSET' => true,
default => false
}
file {'was-details.txt':
ensure => present,
path => '/tmp/was-details.txt',
mode => '0777',
source => "${sourcePath}/was-details.txt",
replace => true
}
}
}
}
$installStatus = $isInstalled ? {
'notfound' => true,
default => false
}
if $installStatus {
exec{"Validate WAS installed or not":
command => '[ $( cat /tmp/was-details.txt | grep -c -E "\-OPT\ [a-zA-Z\=]+" ) -gt 0 ]',
logoutput => false,
onlyif => "[ $( ls -l ${responseFileBackup} | wc -l ) -eq 0 ]",
require => File['was-details.txt'],
provider => shell
}
package {'xorg-x11-xinit':
ensure => present,
require => Exec['Validate WAS installed or not']
}
package {'glibc':
ensure => present,
require => Package['xorg-x11-xinit']
}
exec {'glibc-i686-installation':
command =>'yum install -y $( yum provides */ld-linux.so.2 | grep glibc | head -n 1 | awk \'{print $1}\' )',
logoutput => true,
require => Package['glibc'],
provider => shell,
onlyif => "[ $(locate ld-linux.so.2 | wc -l ) -eq 0 ]",
timeout => 0
}
exec {'installing Dependency rpm':
command => 'yum install -y libXau-*i686 libxcb-*i686 libX11-*i686 libXext-*i686 libXp-*i686 libICE-*i686 libuuid-*i686 libSM-*i686 libXt-*i686 libXmu-*i686 libXi-*i686 libXtst-*i686 libXrender-*i686 freetype-*0.2.i686 expat-*i686 fontconfig-*i686 libXft-*i686 compat-libstdc++-*i686 ksh-*x86_64 libgcc-*i686 libstdc++-*x86_64 expat-*x86_64 gtk2-*x86_64 ',
logoutput => true,
require => Exec['glibc-i686-installation'],
provider => shell,
timeout => 0
}
file{'/opt/was-installer.tar.gz':
ensure => present,
source => "${sourcePath}/was-installer.tar.gz",
require => File['was-details.txt'],
mode => '0777',
replace => true
}
exec { 'Extract WAS Tarball':
command => "tar -xvf /opt/was-installer.tar.gz",
require => File['/opt/was-installer.tar.gz'],
cwd => '/opt/',
onlyif => "[ $( ls -l /opt | grep -c WAS ) -eq 0 ]",
path => '/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:',
logoutput => true,
provider => shell
}
file{ '/opt/WAS':
ensure => directory,
require => Exec['Extract WAS Tarball'],
mode => '0777'
}
exec{ 'Change Permission of Installer':
path => '/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:',
require => File['/opt/WAS'],
command => 'chmod -R 777 ./',
cwd => '/opt/WAS',
logoutput => true,
provider => shell
}
}
else {
alert ("WebSphere Application Server is already installed.")
}
}
|