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:
2025-03-13 12:59:09 +01:00
parent 4e3a28164d
commit 1222ce8752

View File

@@ -54,7 +54,7 @@
ansible.builtin.file: ansible.builtin.file:
path: "{{ temp_dir.path }}" path: "{{ temp_dir.path }}"
state: absent 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 - name: Create mount directory if it doesn't exist
ansible.builtin.file: ansible.builtin.file: