Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

38 satır
1.0 KiB

  1. - import_tasks: "{{ role_path }}/tasks/init.yml"
  2. tags:
  3. - always
  4. - import_tasks: "{{ role_path }}/tasks/validate_config.yml"
  5. when: "run_setup|bool and matrix_postgres_enabled|bool"
  6. tags:
  7. - setup-all
  8. - setup-postgres
  9. - import_tasks: "{{ role_path }}/tasks/setup_postgres.yml"
  10. when: run_setup|bool
  11. tags:
  12. - setup-all
  13. - setup-postgres
  14. - import_tasks: "{{ role_path }}/tasks/import_postgres.yml"
  15. when: run_postgres_import|bool
  16. tags:
  17. - import-postgres
  18. # The `run_postgres_import_sqlite_db` variable had better be renamed to be consistent,
  19. # but that's a breaking change which may cause trouble for people.
  20. - import_tasks: "{{ role_path }}/tasks/import_synapse_sqlite_db.yml"
  21. when: run_postgres_import_sqlite_db|bool
  22. tags:
  23. - import-synapse-sqlite-db
  24. - import_tasks: "{{ role_path }}/tasks/upgrade_postgres.yml"
  25. when: run_postgres_upgrade|bool
  26. tags:
  27. - upgrade-postgres
  28. - import_tasks: "{{ role_path }}/tasks/run_vacuum.yml"
  29. when: run_postgres_vacuum|bool
  30. tags:
  31. - run-postgres-vacuum