Puppet Class: ibm_profile::mq_machine::limits

Inherits:
ibm_profile
Defined in:
manifests/mq_machine/limits.pp

Summary

This class is the default implementation for making sure the OS Limits on your system are set correctly for MQ.

Overview

--

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

–++–

Parameters:

  • list (Hash)

    The list of security limits to ensure for MQ. The default is: “‘yaml mqm/nofile“:

    soft: 20480
    hard: 20480
    

    mqm/nproc“:

    soft: 4096
    hard: 4096
    

    “‘



23
24
25
26
27
28
29
30
# File 'manifests/mq_machine/limits.pp', line 23

class ibm_profile::mq_machine::limits(
  Hash $list
) inherits ibm_profile {
  echo {'MQ limits':
    withpath => false,
  }
  ensure_resources(limits::limits, $list)
}