Displaying 1 result from an estimated 1 matches for "package_gsk_version".
2011 Sep 21
2
Two parameterized classes calling both a thirth class (results in already defined)
...ache class
should only call the mq_gsk class when the mq class is not used in a
hosts'' node definition
Here is my configuration
class mq (
$gsk_version = undef ) {
require mq::params
< ..... >
class { ''mq_gsk'':
gsk_version => "${mq::params::package_gsk_version}",
}
}
class mq_gsk (
$gsk_version = undef ) {
require mq_gsk::params
package { $mq_gsk::params::gsk_packages:
ensure => "${mq_gsk::params::package_gsk_version}",
}
}
When a node needs to be configured as an MQ server, the mq class will
be included and mq and...