All Projects â†’ puppetlabs â†’ puppetlabs-limits

puppetlabs / puppetlabs-limits

Licence: other
Module for managing pam limits in /etc/security/limits.conf

Programming Languages

Puppet
460 projects
ruby
36898 projects - #4 most used programming language

Labels

Projects that are alternatives of or similar to puppetlabs-limits

module-init
🏁 Create a new node module with all the right stuff.
Stars: ✭ 71 (+407.14%)
Mutual labels:  module
nuxt-modules
AX2's Nuxt modules
Stars: ✭ 30 (+114.29%)
Mutual labels:  module
vue-component-creator-plugin
Simplify your frontend dev by automatically created vue components and vuex modules
Stars: ✭ 16 (+14.29%)
Mutual labels:  module
ngx http hmac secure link module
HMAC Secure Link module for NGINX.
Stars: ✭ 47 (+235.71%)
Mutual labels:  module
PoShLog
ðŸ”Đ PoShLog is PowerShell cross-platform logging module. It allows you to log structured event data into console, file and much more places easily. It's built upon great C# logging library Serilog - https://serilog.net/
Stars: ✭ 108 (+671.43%)
Mutual labels:  module
SCF4-SDK
Motorized zoom lens controller Kurokesu SCF4 module featuring STM32 controller and Onsemi LC898201 driver control software
Stars: ✭ 14 (+0%)
Mutual labels:  module
silverstripe-base
A base module for my SilverStripe projects
Stars: ✭ 17 (+21.43%)
Mutual labels:  module
breaker
🚧 Flexible mechanism to make execution flow interruptible.
Stars: ✭ 100 (+614.29%)
Mutual labels:  module
note
äļ€äš›æŠ€æœŊįŽ”čŪ°
Stars: ✭ 174 (+1142.86%)
Mutual labels:  module
vuex-module-generator
abdullah.github.io/vuex-module-generator
Stars: ✭ 89 (+535.71%)
Mutual labels:  module
Framer-CollectionComponent
Framer Module
Stars: ✭ 22 (+57.14%)
Mutual labels:  module
google streetview
A command line tool and module for Google Street View Image API
Stars: ✭ 77 (+450%)
Mutual labels:  module
lovedebug
A fixed and updated repo of LOVEDEBUG
Stars: ✭ 22 (+57.14%)
Mutual labels:  module
HumHub-WeChat
Its a chat widget for admins and moderators You can use from HumHub Admin Panel - it is working with latest HumHub.
Stars: ✭ 14 (+0%)
Mutual labels:  module
node-advanced
Node Advanced Courseware
Stars: ✭ 80 (+471.43%)
Mutual labels:  module
fvtt-data-toolbox
Foundry VTT Data Toolbox
Stars: ✭ 17 (+21.43%)
Mutual labels:  module
react-native-tab-navigator
JavaScript for React-Native iOS Android module
Stars: ✭ 35 (+150%)
Mutual labels:  module
modules
Officially supported Revel modules
Stars: ✭ 46 (+228.57%)
Mutual labels:  module
laravel-module-loader
THIS PACKAGE HAS BEEN DEPRECATED — A lightweight package to organize your code into contextual modules.
Stars: ✭ 76 (+442.86%)
Mutual labels:  module
laravel-module
Module management package for Laravel
Stars: ✭ 65 (+364.29%)
Mutual labels:  module

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)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].