Skip to content

Commit 13fbd03

Browse files
committed
Fix role failing on Squid task "Create the cache directories for the first time"
This is a simpler solution than that from f220483. In fact, the cause of the problem was just a typo (see changes and docs for ansible.builtin.command).
1 parent 58679a5 commit 13fbd03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: tasks/squid.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
become_user: "{{ cvmfs_squid_user }}"
2424
ansible.builtin.command: squid -z
2525
args:
26-
creates: "{{ cvmfs_stratum1_cache_dir }}/00"
26+
creates: "{{ cvmfs_stratum1_cache_dir.dir }}/00"
2727
when: cvmfs_stratum1_cache_dir is defined
2828

2929
- name: Ensure squid is enabled and started

0 commit comments

Comments
 (0)