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 =
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
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
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
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
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