File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree File renamed without changes.
Original file line number Diff line number Diff line change 6161
6262- name : Create a list of paths to the packages from found files
6363 ansible.builtin.set_fact :
64- package_list : " {{ package_files.results | map(attribute='files.0.path') | list }}"
64+ package_list : " {{ package_list | default([]) + [item.files.0.path | string] }}"
65+ loop :
66+ " {{ package_files.results }}"
67+ when :
68+ - item.files is defined
69+ - item.files | length > 0
70+ - item.files.0.path is defined
71+ - ansible_architecture == 'aarch64'
72+
73+
74+ - name : Create a list of paths to the packages from found files
75+ ansible.builtin.set_fact :
76+ package_list : " {{ package_files.results.0 | map(attribute='files.0.path') | list }}"
6577 when :
6678 - " 'MQSeriesRuntime' not in ansible_facts.packages"
6779 - " 'ibmmq-runtime' not in ansible_facts.packages"
80+ - ansible_architecture != 'aarch64'
6881
6982- name : Rpm Installation
7083 ansible.builtin.dnf :
You can’t perform that action at this time.
0 commit comments