Puppet Class: wls_profile::weblogic::packages

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

Summary

Overview

+--+

wls_profile::packages

This class is the default implementation for making sure the required packages are on your system.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 (Array[String[1]])

    The required packages for a succesful WebLogic installation. The defaults are: yaml wls_profile::weblogic::packages::list: - binutils.x86_64 - unzip.x86_64



18
19
20
21
22
23
24
25
26
27
28
# File 'manifests/weblogic/packages.pp', line 18

class wls_profile::weblogic::packages(
  Array[String[1]] $list,
) inherits wls_profile {
  echo {'WebLogic Packages':
    withpath => false,
  }

  package { $list:
    ensure  => present,
  }
}