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.
 
 

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