Skip to content

Commit 4c7c456

Browse files
authored
Merge pull request #14345 from jan-cerny/mount_template_ansible
Fix Jinja filter in Ansible task in mount_option template
2 parents 264598f + ac828db commit 4c7c456

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/templates/mount_option/ansible.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
set_fact:
4242
mount_info: "{{ mount_info|default({})|combine({item.0: item.1}) }}"
4343
with_together:
44-
- "{{ device_name.stdout_lines[0].split() | list | lower }}"
44+
- "{{ device_name.stdout_lines[0].split() | map('lower') | list }}"
4545
- "{{ device_name.stdout_lines[1].split() | list }}"
4646
when:
4747
- device_name.stdout is defined and device_name.stdout_lines is defined

0 commit comments

Comments
 (0)