Puppet Class: ibm_profile::mq_machine::fixpack
- Inherits:
- ibm_profile
- Defined in:
- manifests/mq_machine/fixpack.pp
Overview
--
–++–
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'manifests/mq_machine/fixpack.pp', line 3
class ibm_profile::mq_machine::fixpack(
String $source_location = $ibm_profile::source_location,
Optional[Pattern[/\d+\.\d+\.\d+\.\d/]]
$version = undef,
) inherits ibm_profile {
if $version != undef {
echo {"MQ fixpack ${version} software from ${source_location}":
withpath => false,
}
mq_install::fixpack{ $version:
source_location => '/vagrant/modules/software/files',
}
}
}
|