add missing bracket

Co-authored-by: Xan Manning <244186+xanmanning@users.noreply.github.com>
This commit is contained in:
Karsten Kosmala 2022-01-30 12:08:22 +01:00 committed by GitHub
parent 424145881c
commit 80eca60031
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@
- name: Ensure auto-deploying manifests are downloaded to the primary controller
ansible.builtin.get_url:
url: "{{ item.url }}"
dest: "{{ k3s_server_manifests_dir }}/{{ item.filename | default(item.url | basename }}"
dest: "{{ k3s_server_manifests_dir }}/{{ item.filename | default(item.url | basename) }}"
mode: 0644
loop: "{{ k3s_server_manifests_urls }}"
become: "{{ k3s_become }}"