Update to 2022-01-29 13:00

This commit is contained in:
Daniel Berteaud
2022-01-29 13:00:05 +01:00
parent f45491ce0b
commit 013c387bca
9 changed files with 82 additions and 36 deletions

View File

@@ -19,14 +19,14 @@
- name: Extract archives
unarchive:
src: "{{ taiga_root_dir }}/tmp/{{ taiga_archives[item].dir | default('taiga-' ~ item ~ '-' ~ taiga_version) }}.tar.gz"
src: "{{ taiga_root_dir }}/tmp/{{ taiga_archives[item].dir | default('taiga-' ~ item ~ '-' ~ taiga_archives[item].version) }}.tar.gz"
dest: "{{ taiga_root_dir }}/tmp"
remote_src: True
loop: "{{ taiga_archives.keys() | list }}"
- name: Move components to their final dir
synchronize:
src: "{{ taiga_root_dir }}/tmp/{{ taiga_archives[item].dir | default('taiga-' ~ item ~ '-' ~ taiga_version) }}/"
src: "{{ taiga_root_dir }}/tmp/{{ taiga_archives[item].dir | default('taiga-' ~ item ~ '-' ~ taiga_archives[item].version) }}/"
dest: "{{ taiga_root_dir }}/app/{{ item }}/"
delete: True
compress: False
@@ -68,7 +68,7 @@
file: path={{ taiga_root_dir }}/app/front/dist/plugins/ state=directory
- name: Install the openid-auth front plugin
copy: src={{ taiga_root_dir }}/tmp/taiga-contrib-openid-auth/front/dist/ dest={{ taiga_root_dir }}/app/front/dist/plugins/openid-auth/ remote_src=True
copy: src={{ taiga_root_dir }}/app/back/taiga-contrib-openid-auth/front/dist/ dest={{ taiga_root_dir }}/app/front/dist/plugins/openid-auth/ remote_src=True
- name: Install dependencies for taiga-events
npm: