fuel-library/deployment/puppet/sysctl
Vladimir Kuklin 945ae2b897 Revert "Sync sysctl module to v0.0.4 from upstream"
Partial-bug: #1337415

This reverts commit 6587dca0e9.

Change-Id: I86d233e77ac8107f034a494a725fe6947fb94427
2014-07-03 16:23:07 +00:00
..
lib/puppet Revert "Sync sysctl module to v0.0.4 from upstream" 2014-07-03 16:23:07 +00:00
manifests Revert "Sync sysctl module to v0.0.4 from upstream" 2014-07-03 16:23:07 +00:00
.gitignore Revert "Sync sysctl module to v0.0.4 from upstream" 2014-07-03 16:23:07 +00:00
.project Revert "Sync sysctl module to v0.0.4 from upstream" 2014-07-03 16:23:07 +00:00
Modulefile Revert "Sync sysctl module to v0.0.4 from upstream" 2014-07-03 16:23:07 +00:00
README Revert "Sync sysctl module to v0.0.4 from upstream" 2014-07-03 16:23:07 +00:00

README

= 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