From 28872da6a08432d6d0250014265e35f28cdce4c1 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Tue, 26 Oct 2021 20:54:05 +0200 Subject: [PATCH] prefix the variable with the role name --- tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index c531891..68b2d89 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -34,10 +34,10 @@ - name: "Copy the project files to the server" copy: - src: "{{ project_name }}" - dest: "{{ ansible_user_dir }}/{{ project_name }}" + src: "{{ docker_project_name }}" + dest: "{{ ansible_user_dir }}/{{ docker_project_name }}" - name: "Copy the traefik config" copy: src: "traefik.yaml" - dest: "{{ ansible_user_dir }}/{{ project_name }}/traefik.yaml" + dest: "{{ ansible_user_dir }}/{{ docker_project_name }}/traefik.yaml"