瀏覽代碼

Do not use matrix:matrix for Dimension configuration

Dimension runs as the `node` user in the container (`1000:1000`).
It doesn't seem like we have a way around it. Thus, its configuration
must also be readable by that user (or group, in this case).
pull/491/head
Slavi Pantaleev 5 年之前
父節點
當前提交
ae1b1be3f4
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      roles/matrix-dimension/tasks/setup_dimension.yml

+ 2
- 2
roles/matrix-dimension/tasks/setup_dimension.yml 查看文件

@@ -10,7 +10,7 @@
state: directory
mode: 0770
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"
group: "{{ matrix_dimension_user_gid }}"
when: matrix_dimension_enabled|bool

- name: Ensure Dimension config installed
@@ -19,7 +19,7 @@
dest: "{{ matrix_dimension_base_path }}/config.yaml"
mode: 0640
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"
group: "{{ matrix_dimension_user_gid }}"
when: matrix_dimension_enabled|bool

- name: Ensure Dimension image is pulled


Loading…
取消
儲存