prefix the variable with the role name

This commit is contained in:
Andreas Zweili 2021-10-26 20:54:05 +02:00
parent 0b72d51e23
commit 28872da6a0
1 changed files with 3 additions and 3 deletions

View File

@ -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"