Puppet Class: ibmwasihs::precheck

Defined in:
manifests/precheck.pp

Overview

Parameters:

  • sourcePath (Any) (defaults to: 'puppet:///modules/ibmwasihs')
  • isIHSinstalled (Any) (defaults to: "$::ihs_stat")
  • isIHSinstallReq (Any) (defaults to: "$::ihs_install_req")


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
# File 'manifests/precheck.pp', line 1

class ibmwasihs::precheck (
  $sourcePath       = 'puppet:///modules/ibmwasihs',
  $isIHSinstalled   = "$::ihs_stat",
  $isIHSinstallReq  = "$::ihs_install_req"
){
  $isIHSinstallReq_real = $isIHSinstallReq ? {
    'notfound'    => false,
    default       => true
  }
  
  $isIHSinstalled_real = $isIHSinstalled ? {
    'notfound'    => true,
    default       => false
  }
  
  if $isIHSinstalled_real {
    if $isIHSinstallReq_real {
      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
      }
      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 {'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
      }
    }
  }
}