Puppet Class: wls_profile::weblogic::sysctl
- Inherits:
- wls_profile
- Defined in:
- manifests/weblogic/sysctl.pp
Summary
This class is the default implementation for making sure the OS sysctl settings on your system are set correctly for WebLogic.Overview
+--
+
wls_profile::sysctl
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.
–++–
52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'manifests/weblogic/sysctl.pp', line 52
class wls_profile::weblogic::sysctl(
Hash $list
) inherits wls_profile {
echo {'WebLogic Sysctl':
withpath => false,
}
$defaults = {
ensure => 'present',
persist => true,
}
create_resources(sysctl, $list, $defaults)
}
|