Puppet Class: wls_profile::weblogic::wls_opatch

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

Summary

This class is the default implementation for ensuring your WebLogic Opatch is up-to-date.

Overview

wls_profile::weblogic::wls_opatch

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](./weblogic.html) for an explanation on how to do this.

See the file “LICENSE” for the full license governing this code.

Parameters:

  • list (Hash)

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



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

class wls_profile::weblogic::wls_opatch (
  Hash $list
) inherits wls_profile {
  echo { 'WebLogic OPatch Update':
    withpath => false,
  }
  create_resources(wls_install::opatchupgrade, $list)
}