diff options
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/README.markdown b/README.markdown index 53769e0..f0a9c0e 100644 --- a/README.markdown +++ b/README.markdown @@ -12,6 +12,21 @@ individual setting in an INI file. Here's an example usage: ensure => present, } +A supplementary resource type is `ini_subsetting`, which is used to manage +settings that consist of several arguments such as + + JAVA_ARGS="-Xmx192m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/var/log/pe-puppetdb/puppetdb-oom.hprof " + + ini_subsetting {'sample subsetting': + ensure => present, + section => '', + key_val_separator => '=', + path => '/etc/default/pe-puppetdb', + setting => 'JAVA_ARGS', + subsetting => '-Xmx', + value => '512m', + } + A few noteworthy features: * The module tries *hard* not to manipulate your file any more than it needs to. |