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

13 行
369 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 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_pantalaimon_homeserver_url"
  10. when: "vars[item] == '' or vars[item] is none"