Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

31 Zeilen
740 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_import_postgres|bool
  16. tags:
  17. - import-postgres
  18. - import_tasks: "{{ role_path }}/tasks/import_sqlite_db.yml"
  19. when: run_import_sqlite_db|bool
  20. tags:
  21. - import-sqlite-db
  22. - import_tasks: "{{ role_path }}/tasks/upgrade_postgres.yml"
  23. when: run_upgrade_postgres|bool
  24. tags:
  25. - upgrade-postgres