Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 rivejä
557 B

  1. ---
  2. # Validate configuration for matrix-livekit-server
  3. - name: Fail if required matrix-livekit-server 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_livekit_server_base_path', when: true}
  10. - {'name': 'matrix_livekit_server_container_network', when: true}
  11. - {'name': 'matrix_livekit_server_image', when: true}
  12. - {'name': 'matrix_livekit_server_image', when: true}