Skip to content

Commit e51569f

Browse files
Merge pull request #126 from ibm-messaging/943-support
Support for IBM MQ CD 9.4.3
2 parents 9c5ed7e + 6e8ff91 commit e51569f

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace: ibm_messaging
88
name: ibmmq
99

1010
# The version of the collection. Must be compatible with semantic versioning
11-
version: 1.0.4
11+
version: 1.0.5
1212

1313
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1414
readme: README-GALAXY.md

playbooks/mq-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
mqm_profile: .profile
1616
- role: downloadmq
1717
vars:
18-
version: 940
18+
version: 943
1919
downloadURL: https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqadv/
2020
- role: installmq
2121
- role: setupenvironment

roles/downloadmq/tasks/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,10 @@
4545
vrmf: '{{ vrmf942 }}'
4646
when: convention=='new' and version==942
4747

48+
- name: Set V.R.M.F to 9.4.3 if version matches
49+
ansible.builtin.set_fact:
50+
vrmf: '{{ vrmf943 }}'
51+
when: convention=='new' and version==943
52+
4853
- name: Including the task list for this platform
4954
ansible.builtin.include_tasks: "{{ ansible_system }}_{{ ansible_architecture }}_{{ role_name }}.yml"

roles/downloadmq/vars/common_downloadmq.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ vrmf935: '9.3.5.0'
66
vrmf940: '9.4.0.0'
77
vrmf941: '9.4.1.0'
88
vrmf942: '9.4.2.0'
9+
vrmf943: '9.4.3.0'

0 commit comments

Comments
 (0)