Use flat file copy
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Luke Murphy 2020-04-10 12:37:08 +02:00
parent 45acb9f5c7
commit 5b4a19040f
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 12 additions and 0 deletions

View File

@ -52,6 +52,18 @@
with_items:
- src: config.json
dest: /var/lib/alerta/config.json
# Note(decentral1se): can't use "template" module here
# because there are {{ }} jinja markers in this file!
- name: Copy over email templates
become: true
copy:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
owner: "{{ docker_user_uid }}"
group: "{{ docker_user_gid }}"
mode: 0664
with_items:
- src: email.tmpl
dest: /var/lib/alerta/email.tmpl