summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorMicah <micah@leap.se>2016-05-24 10:19:40 -0400
committerMicah <micah@leap.se>2016-05-24 10:19:40 -0400
commitbb047f1665d63b84d4f18005c938dafc502bc1fd (patch)
tree479d769f1a80be838996d7a7694957936b1da44b /README
Squashed 'puppet/modules/sysctl/' content from commit 975852b
git-subtree-dir: puppet/modules/sysctl git-subtree-split: 975852b7acc1125b4cd9d4d490b9abd8d31217e6
Diffstat (limited to 'README')
-rw-r--r--README20
1 files changed, 20 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 00000000..a3980f70
--- /dev/null
+++ b/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",
+}