mirror of
https://github.com/mrlesmithjr/ansible-manage-lvm.git
synced 2025-12-12 21:04:20 +03:00
Fixes implicit truthy conditional that fails in Ansible 2.19+. Changes `when: scsi_devices['stdout'] | length` to `when: scsi_devices['stdout'] | length > 0` to return an explicit boolean value instead of an integer. Closes #146 (duplicate PR)