Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
581 B

  1. # SPDX-FileCopyrightText: 2026 MDAD project contributors
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - name: (Deprecation) Catch and report renamed matrix-client-commet variables
  6. ansible.builtin.fail:
  7. msg: >-
  8. The variable `{{ item.old }}` is deprecated. Please use `{{ item.new }}` instead.
  9. when: "lookup('ansible.builtin.varnames', ('^' + item.old + '$'), wantlist=True) | length > 0"
  10. with_items:
  11. - {'old': 'matrix_client_commet_container_image_force_pull', 'new': '<removed> (the new community.docker.docker_image_pull module handles this natively)'}