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.
 
 

23 regels
1.2 KiB

  1. ---
  2. - name: Fail if required matrix-reminder-bot settings not defined
  3. ansible.builtin.fail:
  4. msg: >-
  5. You need to define a required configuration setting (`{{ item }}`).
  6. when: "item.when | bool and vars[item.name] == ''"
  7. with_items:
  8. - {'name': 'matrix_bot_matrix_reminder_bot_matrix_user_password', when: true}
  9. - {'name': 'matrix_bot_matrix_reminder_bot_reminders_timezone', when: true}
  10. - {'name': 'matrix_bot_matrix_reminder_bot_container_network', when: true}
  11. - {'name': 'matrix_bot_matrix_reminder_bot_matrix_homeserver_url', when: true}
  12. - {'name': 'matrix_bot_matrix_reminder_bot_database_hostname', when: "{{ matrix_bot_matrix_reminder_bot_database_engine == 'postgres' }}"}
  13. - name: (Deprecation) Catch and report renamed matrix-reminder-bot 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_bot_matrix_reminder_bot_container_self_build', 'new': 'matrix_bot_matrix_reminder_bot_container_image_self_build'}