Skip to content

inuits/puppetlabs-limits

 
 

Repository files navigation

Limits module for Puppet

Description

Module for managing pam limits in /etc/security/limits.conf

Usage

limits::fragment

  limits::fragment {
    "*/soft/nofile":
      value => "1024";
    "*/hard/nofile":
      value => "8192";
  }

You can also use hiera with this module, to match the example above, you can use the following configuration

In your hiera/host yaml configuration:

---
limits::fragment:
  "*/soft/nofile":
    value: '1024'
  "*/hard/nofile":
    value: '8192'

Your site.pp or other configuration should include the following:

$limits = hiera('limits::fragment', {})
create_resources('limits::fragment', $limits)

About

Module for managing pam limits in /etc/security/limits.conf

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Puppet 60.2%
  • Ruby 39.8%