Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

19 lignes
681 B

  1. ---
  2. - name: (Deprecation) Catch and report renamed Coturn settings
  3. ansible.builtin.fail:
  4. msg: >-
  5. Your configuration contains a variable, which now has a different name.
  6. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  7. when: "item.old in vars"
  8. with_items:
  9. - {'old': 'matrix_coturn_docker_network', 'new': 'matrix_coturn_container_network'}
  10. - name: Fail if required Coturn settings not defined
  11. ansible.builtin.fail:
  12. msg: >-
  13. You need to define a required configuration setting (`{{ item }}`) for using Coturn.
  14. when: "vars[item] == ''"
  15. with_items:
  16. - "matrix_coturn_turn_static_auth_secret"