Re: [Puppet Users] Puppet module 'issue' with sysctl provider (augeasproviders)

2014-07-25 Thread Stefan Heijmans
Hi, Just did some tests with the suggestions; class oracle_t { include oracle_t::install include oracle_t::sysctl } class oracle_t::install { package { 'oracle-rdbms-server-11gR2-preinstall': ensure => present, } } class oracle_t::sysctl { sysctl { 'kernel.shmall': ensure =

Re: [Puppet Users] Puppet module 'issue' with sysctl provider (augeasproviders)

2014-07-18 Thread Stefan Heijmans
Hi John/Felix, thanks for the suggestions, will try them out next week and come back with the results Stefan -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [Puppet Users] Puppet module 'issue' with sysctl provider (augeasproviders)

2014-07-17 Thread Felix Frank
On 06/19/2014 02:12 PM, Stefan Heijmans wrote: > class oracle_t { > include install, sysctl > } FWIW, I consider this bad form. You should qualify your class names, even if you include inside the same module. include oracle_t::install include oracle_t::sysctl It's not much more to type, and i

Re: [Puppet Users] Puppet module 'issue' with sysctl provider (augeasproviders)

2014-07-16 Thread Stefan Heijmans
Hi, the difference is in the /etc/sysctl.conf;' Puppet module with all resources in 1 file === After; /etc/sysctl.conf -rw-r--r--. 1 root root 2679 Jun 19 12:54 /etc/sysctl.conf fs.aio-max-nr = 1048576 fs.file-max = 6815744 kernel.core_uses_pid = 1 kernel

Re: [Puppet Users] Puppet module 'issue' with sysctl provider (augeasproviders)

2014-07-16 Thread Felix Frank
On 06/19/2014 02:12 PM, Stefan Heijmans wrote: > Puppet module with all resources in 1 file > === > ... > kernel.sem is available in /etc/sysctl.conf > kernel.sem = 250 32000 100 128 > kernel.shmall is available in /etc/sysctl.conf > kernel.shmall = 107374182

[Puppet Users] Puppet module 'issue' with sysctl provider (augeasproviders)

2014-06-19 Thread Stefan Heijmans
Hello, I've got 'something strange' with a Puppet module, using augeasproviders (v1.2.0 or master branch of today) on Puppet 3.6.2 Below a stripped version of it with the same results as the full version; It installs an Oracle preinstall rpm which also updates /etc/sysctl.conf settings and us