Skip to content

Commit 8c60ad3

Browse files
Add support for 941 and 942
1 parent ccf2822 commit 8c60ad3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

roles/downloadmq/tasks/main.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,15 @@
3535
vrmf: '{{ vrmf940 }}'
3636
when: convention=='new' and version==940
3737

38+
- name: Set V.R.M.F to 9.4.1 if version matches
39+
ansible.builtin.set_fact:
40+
vrmf: '{{ vrmf941 }}'
41+
when: convention=='new' and version==941
42+
43+
- name: Set V.R.M.F to 9.4.2 if version matches
44+
ansible.builtin.set_fact:
45+
vrmf: '{{ vrmf942 }}'
46+
when: convention=='new' and version==942
47+
3848
- name: Including the task list for this platform
3949
ansible.builtin.include_tasks: "{{ ansible_system }}_{{ ansible_architecture }}_{{ role_name }}.yml"

0 commit comments

Comments
 (0)