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.
 
 

41 regels
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_client_element_enabled|bool"
  6. tags:
  7. - setup-all
  8. - setup-client-element
  9. - import_tasks: "{{ role_path }}/tasks/prepare_themes.yml"
  10. when: run_setup|bool
  11. tags:
  12. - setup-all
  13. - setup-client-element
  14. - import_tasks: "{{ role_path }}/tasks/migrate_riot_web.yml"
  15. when: run_setup|bool
  16. tags:
  17. - setup-all
  18. - setup-client-element
  19. - import_tasks: "{{ role_path }}/tasks/setup_install.yml"
  20. when: "run_setup|bool and matrix_client_element_enabled|bool"
  21. tags:
  22. - setup-all
  23. - setup-client-element
  24. - import_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  25. when: "run_setup|bool and not matrix_client_element_enabled|bool"
  26. tags:
  27. - setup-all
  28. - setup-client-element
  29. - import_tasks: "{{ role_path }}/tasks/self_check.yml"
  30. delegate_to: 127.0.0.1
  31. become: false
  32. when: "run_self_check|bool and matrix_client_element_enabled|bool"
  33. tags:
  34. - self-check