Puppet Class: wls_profile::weblogic::wls_patches

Inherits:
wls_profile
Defined in:
manifests/weblogic/wls_patches.pp

Summary

This class is the default implementation for ensuring your WebLogic software has all the required patches installed.

Overview

+--+

wls_profile::wls_patches

Using hiera, you can customize some of the aspects of this process.

When these customizations aren't enough, you can replace the class with your own class. See wls_profile::weblogic for an explanation on how to do this.

–++–

Parameters:

  • list (Hash)

    A Hash describing the WebLogic patches you want be installed. Default value is: {}



15
16
17
18
19
20
21
22
# File 'manifests/weblogic/wls_patches.pp', line 15

class wls_profile::weblogic::wls_patches(
  Hash $list
) inherits wls_profile {
  echo {'WebLogic Patches':
    withpath => false,
  }
  create_resources(ora_config::wls_opatch, $list)
}