Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

19 řádky
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"