fix: update condition for temp_dir.path in geesefs.yml task
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 15s
Nix Format Check / check-format (push) Successful in 53s
Python Lint Check / check-python (push) Failing after 11s

This commit is contained in:
Menno van Leeuwen 2025-03-13 12:59:09 +01:00
parent 4e3a28164d
commit 1222ce8752
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

View File

@ -54,7 +54,7 @@
ansible.builtin.file:
path: "{{ temp_dir.path }}"
state: absent
when: temp_dir.path is defined
when: needs_installation | bool and temp_dir.path is defined
- name: Create mount directory if it doesn't exist
ansible.builtin.file: