ソースを参照

Update main.yml

element-call-integration
Backslash 1年前
committed by GitHub
コミット
fc6357a089
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: B5690EEEBB952194
1個のファイルの変更16行の追加10行の削除
  1. +16
    -10
      roles/custom/matrix-element-call/tasks/main.yml

+ 16
- 10
roles/custom/matrix-element-call/tasks/main.yml ファイルの表示

@@ -1,14 +1,20 @@
---
# roles/custom/matrix-element-call/tasks/main.yml

- name: Ensure Element Call dependencies are valid and present
when: matrix_element_call_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
- tags:
- setup-all
- setup-element-call
- install-all
- install-element-call
block:
- when: matrix_element_call_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"

- name: Install Element Call and its related services
when: matrix_element_call_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/install.yml"
- when: matrix_element_call_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/install.yml"

- name: Uninstall Element Call and clean up resources
when: not matrix_element_call_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/uninstall.yml"
- tags:
- setup-all
- setup-element-call
block:
- when: not matrix_element_call_enabled | bool
ansible.builtin.include_tasks: "{{ role_path }}/tasks/uninstall.yml"

読み込み中…
キャンセル
保存