Matrix Docker Ansible eploy
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 

19 рядки
590 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_mautrix_twitter_appservice_token"
  9. - "matrix_mautrix_twitter_homeserver_token"
  10. - name: Fail if database is not defined
  11. fail:
  12. msg: >-
  13. You need to define a need to set `matrix_mautrix_twitter_database_engine: postgres` and redefine the other `matrix_mautrix_twitter_database_*` variables
  14. when: "vars[item] == ''"
  15. with_items:
  16. - "matrix_mautrix_twitter_database_engine"