Puppet Function: orawls::oim_configured

Defined in:
lib/puppet/functions/orawls/oim_configured.rb
Function type:
Ruby 4.x API

Overview

orawls::oim_configured(String $full_domain_path)Boolean

Check if OIM is already configured

Examples:

Finding a FMW product

orawls::oim_configured('/opt/oracle/wlsdomains') => true

Parameters:

  • full_domain_path (String)

    the full path to the domain

Returns:

  • (Boolean)

    Return if it is found or not



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
# File 'lib/puppet/functions/orawls/oim_configured.rb', line 3

Puppet::Functions.create_function(:'orawls::oim_configured') do

  # Check if oim is already configured
  # @param full_domain_path the full path to the domain
  # @return [Boolean] Return if it is found or not
  # @example Finding a FMW product
  #   orawls::oim_configured('/opt/oracle/wlsdomains') => true
  dispatch :exists do
    param 'String', :full_domain_path
    # return_type 'Boolean'
  end

  def exists(full_domain_path)
    art_exists = false
    full_domain_path = full_domain_path.strip.downcase

    log "full domain path #{full_domain_path}"
    prefix = 'ora_mdw_domain'

    # check the middleware home
    scope = closure_scope
    domain_count = scope['facts'][prefix + '_cnt']
    log "total domains #{domain_count}"
    if domain_count == 'NotFound' or domain_count.nil?
      log "no domains found return false"
      return art_exists
    else
      n = 0
      while n < domain_count.to_i

        # lookup up domain
        domain = scope['facts'][prefix + '_' + n.to_s]
        unless domain == 'NotFound'
          domain = domain.strip.downcase
          # do we found the right domain
          log "compare #{full_domain_path} with #{domain}"

          if domain == full_domain_path
            oim =  scope['facts'][prefix + '_' + n.to_s + '_oim_configured']
            log "has value #{oim}"
            unless oim == 'NotFound'
              if oim == 'true'
                log 'return true'
                return true
              else
                log 'return false'
                return true               
              end
            end
          end
        end
        n += 1
      end
    end
    log "end of function return false"
    return art_exists

  end

  def log(msg)
    Puppet::Util::Log.create(
      :level   => :info,
      :message => msg,
      :source  => 'orawls::oim_configured'
    )
  end

end