fuel-library/deployment/puppet/sysctl
2013-01-11 14:09:25 +04:00
..
lib/puppet Initial commit 2012-09-07 17:38:58 -07:00
manifests added fix for CentOS (paths to sysctl) 2012-09-07 18:02:29 -07:00
.gitignore Ignore metadata.json 2013-01-11 14:09:25 +04:00
.project Add project files 2013-01-10 18:37:05 +04:00
Modulefile Initial commit 2012-09-07 17:38:58 -07:00
README Initial commit 2012-09-07 17:38:58 -07:00

= Requirements

= Overview

This modules allows to configure sysctl.

= Usage
  
  node "mynode" inherits ... {
    sysctl::value { "vm.nr_hugepages": value => "1583"}
  }

  When setting a key that contains multiple values, use a tab to separate the
  values:
  
  node "mynode" inherits ... {
    sysctl::value { 'net.ipv4.tcp_rmem':
        value => "4096\t131072\t131072",
    }
  }

  It is preferred that you set your exec path globally. This is usually done
  in site.pp and would look something like this (adjust for your environment):

  # Set a site-wide global path so we don't have to explicitly specify a path
  # for each exec.
  Exec { path => '/usr/bin:/usr/sbin/:/bin:/sbin' }

= License

 Copyright (C) 2011 Immerda Project Group
 Author mh <mh@immerda.ch>
 Modified by Nicolas Zin <nicolas.zin@savoirfairelinux.com>
 Licence: GPL v2