From 239a991d7e0ff760c7b782605c8a9c941101081f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Gr=C3=BCning?= Date: Tue, 26 Nov 2024 23:30:49 +0100 Subject: [PATCH] fix path --- galaxy/ansible/galaxy_file_source_templates.yml | 4 ++-- galaxy/ansible/templates/file_source_templates.yml.j2 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/galaxy/ansible/galaxy_file_source_templates.yml b/galaxy/ansible/galaxy_file_source_templates.yml index 5a022e4a..4675b130 100644 --- a/galaxy/ansible/galaxy_file_source_templates.yml +++ b/galaxy/ansible/galaxy_file_source_templates.yml @@ -17,8 +17,8 @@ - name: "Copy B2Drop file source template" ansible.builtin.copy: - src: "./ansible/files/production_b2drop.yml" - dest: "/galaxy/lib/galaxy/files/templates/examples/production_b2drop.yml" + src: "./files/production_b2drop.yml" + dest: "{{ galaxy_config_dir }}/production_b2drop.yml" owner: "{{ galaxy_user_name }}" group: "{{ galaxy_user_name }}" mode: '0644' diff --git a/galaxy/ansible/templates/file_source_templates.yml.j2 b/galaxy/ansible/templates/file_source_templates.yml.j2 index 3e6b4607..0878cf6a 100644 --- a/galaxy/ansible/templates/file_source_templates.yml.j2 +++ b/galaxy/ansible/templates/file_source_templates.yml.j2 @@ -7,4 +7,4 @@ - include: "{{ galaxy_server_dir }}/lib/galaxy/files/templates/examples/production_dropbox.yml" - include: "{{ galaxy_server_dir }}/lib/galaxy/files/templates/examples/production_google_drive.yml" - include: "{{ galaxy_server_dir }}/lib/galaxy/files/templates/examples/production_webdav.yml" -- include: "{{ galaxy_server_dir }}/lib/galaxy/files/templates/examples/production_b2drop.yml" +- include: "{{ galaxy_config_dir }}/production_b2drop.yml"