Puppet Class: wls_profile::weblogic::limits
- Inherits:
- wls_profile
- Defined in:
- manifests/weblogic/limits.pp
Summary
This class is the default implementation for making sure the OS Limits on your system are set correctly for WebLogic.Overview
+--
+
wls_profile::limits
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.
–++–
32 33 34 35 36 37 38 39 |
# File 'manifests/weblogic/limits.pp', line 32
class wls_profile::weblogic::limits(
Hash $list
) inherits wls_profile {
echo {'WeLogic limits':
withpath => false,
}
create_resources(limits::limits, $list)
}
|