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
|
# File 'manifests/precheck.pp', line 1
class ibmwasihs::precheck (
$sourcePath = 'puppet:///modules/ibmwasihs'
){
package {'xorg-x11-xinit':
ensure => installed
}
package {'glibc':
ensure => installed
}
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
}
file {'ihs-details.txt':
ensure => present,
path => '/tmp',
mode => '0777',
validate_cmd => '[ $( grep -i -c installLocation % ) -eq 1 ] && [ $( grep -i -c setupAdminUser % ) -eq 1 ] && [ $( grep -i -c setupAdminGroup % ) -eq 1 ] && [ $( grep -i -c washostname % ) -eq 1 ] && [ $( grep -i -c webserverDefinition % ) -eq 1 ]',
require => Package["xorg-x11-xinit"]
}
file{'/opt/ihs-installer.tar.gz':
ensure => present,
source => "${sourcePath}/ihs-installer.tar.gz",
require => File['ihs-details.txt'],
mode => '0777',
replace => true
}
exec { 'Extract IHS Tarball':
command => "tar -xvf /opt/ihs-installer.tar.gz",
require => File['/opt/ihs-installer.tar.gz'],
cwd => '/opt/',
onlyif => "[ $( ls -l /opt | grep -c IHS ) -eq 0 ]",
path => '/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:',
logoutput => true,
provider => shell
}
file{ '/opt/IHS':
ensure => directory,
require => Exec['Extract IHS Tarball'],
mode => '0777'
}
exec{ 'Change Permission of Installer':
path => '/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:',
require => File['/opt/IHS'],
command => 'chmod -R 777 ./',
cwd => '/opt/IHS',
logoutput => true,
provider => shell
}
}
|