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.

31 lines
710 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 and matrix_postgres_enabled"
  6. tags:
  7. - setup-all
  8. - setup-postgres
  9. - import_tasks: "{{ role_path }}/tasks/setup_postgres.yml"
  10. when: run_setup
  11. tags:
  12. - setup-all
  13. - setup-postgres
  14. - import_tasks: "{{ role_path }}/tasks/import_postgres.yml"
  15. when: run_import_postgres
  16. tags:
  17. - import-postgres
  18. - import_tasks: "{{ role_path }}/tasks/import_sqlite_db.yml"
  19. when: run_import_sqlite_db
  20. tags:
  21. - import-sqlite-db
  22. - import_tasks: "{{ role_path }}/tasks/upgrade_postgres.yml"
  23. when: run_upgrade_postgres
  24. tags:
  25. - upgrade-postgres