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

23 行
873 B

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