Fix an inconsistently named variable

This commit is contained in:
Alexander Gorelyshev
2025-12-28 22:04:14 +04:00
parent b1a6a2a28f
commit 591a211144
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@
roles: roles:
- role: genlab.common.mount_device - role: genlab.common.mount_device
devices: mount_device_devices:
- what: "/tmp/test_file" - what: "/tmp/test_file"
where: "/test_mount" where: "/test_mount"
fstype: ext3 fstype: ext3

View File

@@ -1,6 +1,6 @@
--- ---
- name: "Mount devices" - name: "Mount devices"
with_items: "{{ devices }}" loop: "{{ mount_device_devices }}"
ansible.posix.mount: ansible.posix.mount:
fstype: "{{ item.fstype }}" fstype: "{{ item.fstype }}"
path: "{{ item.where }}" path: "{{ item.where }}"