Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
grzanka committed Oct 29, 2023
1 parent 3849b05 commit 00e572d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions roles/backend/tasks/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
- name: Copy the SSL certificate from local machine
ansible.builtin.copy:
src: '{{ backend_ssl_crt }}'
dest: '{{ backend_repo_workdir }} / server.crt'
dest: '{{ backend_repo_workdir }}/server.crt'
mode: '0400'

- name: Copy the SSL key from local machine
ansible.builtin.copy:
src: '{{ backend_ssl_key }}'
dest: '{{ backend_repo_workdir }} / server.key'
dest: '{{ backend_repo_workdir }}/server.key'
mode: '0400'

# get fact about number of cores
Expand Down
4 changes: 2 additions & 2 deletions roles/frontend/tasks/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
- name: Copy the SSL certificate from local machine
ansible.builtin.copy:
src: '{{ frontend_ssl_crt }}'
dest: '{{ frontend_repo_workdir }} / server.crt'
dest: '{{ frontend_repo_workdir }}/server.crt'
mode: '0400'

- name: Copy the SSL key from local machine
ansible.builtin.copy:
src: '{{ frontend_ssl_key }}'
dest: '{{ frontend_repo_workdir }} / server.key'
dest: '{{ frontend_repo_workdir }}/server.key'
mode: '0400'


Expand Down

0 comments on commit 00e572d

Please sign in to comment.