Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

12 行
488 B

  1. ---
  2. # Validate configuration for matrix-element-call
  3. - name: Fail if required matrix-element-call settings are not defined
  4. ansible.builtin.fail:
  5. msg: >
  6. You need to define a required configuration setting (`{{ item.name }}`).
  7. when: "item.when | bool and vars[item.name] == ''"
  8. with_items:
  9. - {'name': 'matrix_element_call_base_path', when: true}
  10. - {'name': 'matrix_element_call_container_network', when: true}
  11. - {'name': 'matrix_element_call_image', when: true}