Puppet Class: ibm_profile::mq_machine::mq_web
- Inherits:
- ibm_profile
- Defined in:
- manifests/mq_machine/mq_web.pp
Summary
This class allows you to setup your MQ web configuration.Overview
--
ibm_profile::mq_machine::mq_web
Use use a ‘yaml` representation of [mq_web](/docs/mq_config/mq_web.html) to specify all properties and params of the service.
–++–
14 15 16 17 18 19 20 21 22 23 |
# File 'manifests/mq_machine/mq_web.pp', line 14
class ibm_profile::mq_machine::mq_web(
Hash $list,
) inherits ibm_profile {
if $list.keys != [] {
echo {'Configure MQ Web':
withpath => false,
}
}
ensure_resources('mq_web', $list)
}
|