fix: add debug task to verify ZFS mountpoints results in Ansible playbook
Some checks failed
Nix Format Check / check-format (push) Waiting to run
Python Lint Check / check-python (push) Waiting to run
Ansible Lint Check / check-ansible (push) Has been cancelled

This commit is contained in:
2025-03-12 21:27:58 +01:00
parent d3a00bef3e
commit 7bc9508e8e

View File

@ -135,4 +135,11 @@
- { path: /mnt/photos, src: datapool/photos }
- { path: /mnt/movies, src: datapool/movies }
- { path: /mnt/tvshows, src: datapool/tv_shows }
register: zfs_mountpoints_result
when: datapool_check.rc == 0
# Add a debug task to verify the operation
- name: Debug ZFS mountpoints results
ansible.builtin.debug:
var: zfs_mountpoints_result
when: datapool_check.rc == 0