From c429f55ef10f3c757189bdab9823c0b74d81fb00 Mon Sep 17 00:00:00 2001 From: varac Date: Thu, 9 Jun 2016 17:34:39 +0200 Subject: 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" --- puppet/modules/sysctl/.gitrepo | 11 +++++++++++ puppet/modules/sysctl/README | 20 ++++++++++++++++++++ puppet/modules/sysctl/manifests/config.pp | 18 ++++++++++++++++++ puppet/modules/sysctl/manifests/init.pp | 10 ++++++++++ 4 files changed, 59 insertions(+) create mode 100644 puppet/modules/sysctl/.gitrepo create mode 100644 puppet/modules/sysctl/README create mode 100644 puppet/modules/sysctl/manifests/config.pp create mode 100644 puppet/modules/sysctl/manifests/init.pp diff --git a/puppet/modules/sysctl/.gitrepo b/puppet/modules/sysctl/.gitrepo new file mode 100644 index 00000000..40c0d662 --- /dev/null +++ b/puppet/modules/sysctl/.gitrepo @@ -0,0 +1,11 @@ +; DO NOT EDIT (unless you know what you are doing) +; +; This subdirectory is a git "subrepo", and this file is maintained by the +; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme +; +[subrepo] + remote = https://leap.se/git/puppet_sysctl + branch = master + commit = 975852b7acc1125b4cd9d4d490b9abd8d31217e6 + parent = 99a3ff59aac9e8a93c015ac429aa15c5b67ad33a + cmdver = 0.3.0 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", +} diff --git a/puppet/modules/sysctl/manifests/config.pp b/puppet/modules/sysctl/manifests/config.pp new file mode 100644 index 00000000..79ddd295 --- /dev/null +++ b/puppet/modules/sysctl/manifests/config.pp @@ -0,0 +1,18 @@ +define sysctl::config ($value, $comment) { + + include sysctl + + augeas { "sysctl_${name}": + context => '/files/etc/sysctl.conf', + changes => [ "set ${name} ${value}", "insert #comment before ${name}", + "set #comment[last()] '${comment}'" ], + onlyif => "get ${name} != ${value}", + notify => Exec["sysctl_${name}"], + } + + exec { "sysctl_${name}": + command => '/sbin/sysctl -p', + subscribe => File['/etc/sysctl.conf'], + refreshonly => true, + } +} diff --git a/puppet/modules/sysctl/manifests/init.pp b/puppet/modules/sysctl/manifests/init.pp new file mode 100644 index 00000000..43d9299e --- /dev/null +++ b/puppet/modules/sysctl/manifests/init.pp @@ -0,0 +1,10 @@ +class sysctl { + + file { '/etc/sysctl.conf': + ensure => present, + mode => '0644', + owner => root, + group => root + } +} + -- cgit v1.2.3