Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

41 行
1022 B

  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. - import_tasks: "{{ role_path }}/tasks/import_sqlite_db.yml"
  19. when: run_postgres_import_sqlite_db|bool
  20. tags:
  21. - import-sqlite-db
  22. - import_tasks: "{{ role_path }}/tasks/upgrade_postgres.yml"
  23. when: run_postgres_upgrade|bool
  24. tags:
  25. - upgrade-postgres
  26. - import_tasks: "{{ role_path }}/tasks/run_synapse_janitor.yml"
  27. when: run_postgres_synapse_janitor|bool
  28. tags:
  29. - run-postgres-synapse-janitor
  30. - import_tasks: "{{ role_path }}/tasks/run_vacuum.yml"
  31. when: run_postgres_vacuum|bool
  32. tags:
  33. - run-postgres-vacuum