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

14 行
462 B

  1. # SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - name: Fail if required matrix-bot-draupnir variables are undefined
  6. ansible.builtin.fail:
  7. msg: "The `{{ item }}` variable must be defined and have a non-null value."
  8. with_items:
  9. - "matrix_appservice_draupnir_for_all_master_control_room_alias"
  10. - "matrix_bot_draupnir_container_network"
  11. when: "vars[item] == '' or vars[item] is none"