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.
 
 

29 Zeilen
693 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_riot_web_enabled|bool"
  6. tags:
  7. - setup-all
  8. - setup-riot-web
  9. - import_tasks: "{{ role_path }}/tasks/prepare_riot_web_themes.yml"
  10. when: run_setup|bool
  11. tags:
  12. - setup-all
  13. - setup-riot-web
  14. - import_tasks: "{{ role_path }}/tasks/setup_riot_web.yml"
  15. when: run_setup|bool
  16. tags:
  17. - setup-all
  18. - setup-riot-web
  19. - import_tasks: "{{ role_path }}/tasks/self_check_riot_web.yml"
  20. delegate_to: 127.0.0.1
  21. become: false
  22. when: "run_self_check|bool and matrix_riot_web_enabled|bool"
  23. tags:
  24. - self-check