mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2024-11-10 05:34:16 +00:00
fix(element): change folder name to match artifact
During the renaming of Riot to Element, the path for the webapp changed from /opt/riot to /opt/element. In those folders, the archives are unpacked, resulting in paths like /opt/element/riot-v${version}. Since the archives are not yet renamed (https://github.com/vector-im/element-web/issues/14896), this riot reference has to stay for now. In the renaming, this was accidentally changed prematurely, resulting in this regression.
This commit is contained in:
parent
0f38043448
commit
a76ebb1fad
1 changed files with 2 additions and 2 deletions
|
@ -22,14 +22,14 @@
|
|||
- name: Link main configuration
|
||||
file:
|
||||
src: "{{ element_webapp_dir }}/config.json"
|
||||
dest: "{{ element_webapp_dir }}/element-v{{ element_version }}/config.json"
|
||||
dest: "{{ element_webapp_dir }}/riot-v{{ element_version }}/config.json"
|
||||
state: link
|
||||
when: element_deployment_method == "webroot"
|
||||
|
||||
- name: Link domain specific configurations
|
||||
file:
|
||||
src: "{{ element_webapp_dir }}/config.{{ item.domain }}.json"
|
||||
dest: "{{ element_webapp_dir }}/element-v{{ element_version }}/config.{{ item.domain }}.json"
|
||||
dest: "{{ element_webapp_dir }}/riot-v{{ element_version }}/config.{{ item.domain }}.json"
|
||||
state: link
|
||||
loop: "{{ element_domain_configs }}"
|
||||
when: element_deployment_method == "webroot"
|
||||
|
|
Loading…
Reference in a new issue