Puppet Class: ibm_profile::mq_machine::sysctl
- Inherits:
- ibm_profile
- Defined in:
- manifests/mq_machine/sysctl.pp
Summary
This class is the default implementation for making sure the OS sysctl settings on your system are set correctly for MQ.Overview
--
ibm_profile::mq_machine::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 [ibm_profile::mq_machine](./mq_machine.html) for an explanation on how to do this.
–++–
14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'manifests/mq_machine/sysctl.pp', line 14
class ibm_profile::mq_machine::sysctl(
Hash $list
) inherits ibm_profile {
echo {'MQ Sysctl':
withpath => false,
}
$defaults = {
ensure => 'present',
persist => true,
}
ensure_resources(sysctl, $list, $defaults)
}
|