Skip to content

Commit 960abbe

Browse files
committed
Change conditional to search for 'Intel'
Changes the conditional to search for 'Intel' in the ansible_facts.processor variable as the first item in the list is not always consistent.
1 parent e754b0a commit 960abbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roles/iommu/tasks/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- intel_iommu=on
88
kernel_cmdline_remove: # noqa: var-naming[no-role-prefix]
99
- ^intel_iommu=
10-
when: "'Intel' in ansible_facts.processor.0"
10+
when: ansible_facts.processor | select('search', 'Intel') | list | length > 0
1111

1212
- name: Set iommu=pt
1313
ansible.builtin.include_role:

0 commit comments

Comments
 (0)