Skip to content

Commit d3771cf

Browse files
Merge pull request #137 from marianavillarp/945-support
support for IBM MQ 945 CD
2 parents bcc70d5 + 2419439 commit d3771cf

5 files changed

Lines changed: 10 additions & 4 deletions

File tree

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.6
11+
version: 1.0.7
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: 944
18+
version: 945
1919
downloadURL: https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/messaging/mqadv/
2020
- role: installmq
2121
- role: setupenvironment

roles/downloadmq/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
version: 944
2+
version: 945
33
local_source: false
44
mq_local_path: ~/tmp/

roles/downloadmq/tasks/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,10 @@
5555
vrmf: '{{ vrmf944 }}'
5656
when: convention=='new' and version==944
5757

58+
- name: Set V.R.M.F to 9.4.5 if version matches
59+
ansible.builtin.set_fact:
60+
vrmf: '{{ vrmf945 }}'
61+
when: convention=='new' and version==945
62+
5863
- name: Including the task list for this platform
5964
ansible.builtin.include_tasks: "{{ ansible_system }}_{{ ansible_architecture }}_{{ role_name }}.yml"

roles/downloadmq/vars/common_downloadmq.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ vrmf940: '9.4.0.0'
77
vrmf941: '9.4.1.0'
88
vrmf942: '9.4.2.0'
99
vrmf943: '9.4.3.0'
10-
vrmf944: '9.4.4.0'
10+
vrmf944: '9.4.4.0'
11+
vrmf945: '9.4.5.0'

0 commit comments

Comments
 (0)