arioch / puppet-ulimit

Puppet module to manage Ulimit on Linux hosts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Puppet Ulimit

Requirements

Tested on...

  • Debian 5 (Lenny)
  • Debian 6 (Squeeze)
  • CentOS 5
  • CentOS 6
  • CentOS 7

Example usage

node /box/ {
  include ulimit

  ulimit::rule {
    'example1':
      ulimit_domain => '*',
      ulimit_type   => 'soft',
      ulimit_item   => 'nofile',
      ulimit_value  => '1024';

    'example2':
      ensure        => absent,
      ulimit_domain => '*',
      ulimit_type   => 'hard',
      ulimit_item   => 'nofile',
      ulimit_value  => '50000';
  }
}

Caveats

By default the module will purge any settings that are not managed by Puppet. While not advised you can disable this feature:

node /box/ {
  class { 'ulimit':
    purge => false,
  }
}

About

Puppet module to manage Ulimit on Linux hosts

License:Other


Languages

Language:Puppet 75.1%Language:Ruby 23.2%Language:HTML 1.5%Language:Pascal 0.2%