Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

20 wiersze
739 B

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