tasks/comment: typo RE: ZFS requirement/order
All checks were successful
ansible-lint / ansible-lint (push) Successful in 25s

This commit is contained in:
Josh Lay 2025-10-19 14:52:05 -05:00
parent 55e4a8fde6
commit 0e8165a312
Signed by: jlay
SSH key fingerprint: SHA256:RwEMoWwXniQX1sqHfSD+3z+LKU/TOkv3i1qsy75vfec

View file

@ -79,7 +79,7 @@
disable_gpg_check: "{{ true if ansible_os_family == 'RedHat' else omit }}" # signature+repo is installed from URL [with SSL/TLS] disable_gpg_check: "{{ true if ansible_os_family == 'RedHat' else omit }}" # signature+repo is installed from URL [with SSL/TLS]
become: true become: true
- name: Remove conflicting 'zfs-fuse' # most likely to appear w/ Fedora, requirement satisfied by real ZFS; placed before immediately install - name: Remove conflicting 'zfs-fuse' # most likely to appear w/ Fedora, requirement satisfied by real ZFS [installed next]
ansible.builtin.command: rpm -e --nodeps zfs-fuse # noqa: command-instead-of-module (lack coverage) ansible.builtin.command: rpm -e --nodeps zfs-fuse # noqa: command-instead-of-module (lack coverage)
when: "'zfs-fuse' in ansible_facts.packages" when: "'zfs-fuse' in ansible_facts.packages"
changed_when: true # lint: assume on return, 'when' checks requirement changed_when: true # lint: assume on return, 'when' checks requirement