summaryrefslogtreecommitdiff
path: root/puppet/modules/sysctl/README
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-06-09 17:34:39 +0200
committervarac <varacanero@zeromail.org>2016-06-14 12:05:18 +0200
commitc429f55ef10f3c757189bdab9823c0b74d81fb00 (patch)
tree42d550f747b77dd21e0d62a864776a6dd6064a1d /puppet/modules/sysctl/README
parentd2c8498b41bebc6a06216515b3cf75564b8fb61a (diff)
git subrepo clone https://leap.se/git/puppet_sysctl puppet/modules/sysctl
subrepo: subdir: "puppet/modules/sysctl" merged: "975852b" upstream: origin: "https://leap.se/git/puppet_sysctl" branch: "master" commit: "975852b" git-subrepo: version: "0.3.0" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "cb2995b"
Diffstat (limited to 'puppet/modules/sysctl/README')
-rw-r--r--puppet/modules/sysctl/README20
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",
+}