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.
 
 

25 Zeilen
556 B

  1. - import_tasks: "{{ role_path }}/tasks/init.yml"
  2. tags:
  3. - always
  4. - import_tasks: "{{ role_path }}/tasks/setup_postgres.yml"
  5. when: run_setup
  6. tags:
  7. - setup-postgres
  8. - setup-all
  9. - import_tasks: "{{ role_path }}/tasks/import_postgres.yml"
  10. when: run_import_postgres
  11. tags:
  12. - import-postgres
  13. - import_tasks: "{{ role_path }}/tasks/import_sqlite_db.yml"
  14. when: run_import_sqlite_db
  15. tags:
  16. - import-sqlite-db
  17. - import_tasks: "{{ role_path }}/tasks/upgrade_postgres.yml"
  18. when: run_upgrade_postgres
  19. tags:
  20. - upgrade-postgres