diff options
author | Micah <micah@leap.se> | 2016-05-24 10:19:40 -0400 |
---|---|---|
committer | Micah <micah@leap.se> | 2016-05-24 10:19:40 -0400 |
commit | 8d50b8cf042eb3b25095281734c8dd58e606c018 (patch) | |
tree | a85817b7ed63b6a1d564b332f8b00a718bd43685 /puppet/modules/sysctl/README | |
parent | 95e3216a7bf1a6ac08cd43d9fa8afd2f14e79f4f (diff) | |
parent | bb047f1665d63b84d4f18005c938dafc502bc1fd (diff) |
Merge commit 'bb047f1665d63b84d4f18005c938dafc502bc1fd' as 'puppet/modules/sysctl'
Diffstat (limited to 'puppet/modules/sysctl/README')
-rw-r--r-- | puppet/modules/sysctl/README | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/puppet/modules/sysctl/README b/puppet/modules/sysctl/README new file mode 100644 index 00000000..a3980f70 --- /dev/null +++ b/puppet/modules/sysctl/README @@ -0,0 +1,20 @@ +sysctl module +------------- + +This puppet module handles the setting of variables in sysctl.conf, its +a simple module that utilizes the puppet augeas built-in type and the +sysctl binary. You must have the augeas ruby libraries installed to +use this type. + +You can set a value and a comment for that value using this module, +some examples: + +sysctl::config { "vm.mmap_min_addr": + value => 32768, + comment => "Never mmap into the first 32k of memory", +} + +sysctl::config { "fs.file-max": + value => 65536, + comment => "Maximum number of filehandles", +} |