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.
 
 

29 lines
898 B

  1. # SPDX-FileCopyrightText: 2022 MDAD project contributors
  2. # SPDX-FileCopyrightText: 2024 wjbeckett
  3. # SPDX-FileCopyrightText: 2024 Slavi Pantaleev
  4. #
  5. # SPDX-License-Identifier: AGPL-3.0-or-later
  6. ---
  7. - name: Perform LiveKit Server installation tasks
  8. when: livekit_server_enabled | bool
  9. tags:
  10. - setup-all
  11. - setup-livekit-server
  12. - install-all
  13. - install-livekit-server
  14. block:
  15. - name: Validate LiveKit Server configuration
  16. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  17. - name: Install LiveKit Server
  18. ansible.builtin.include_tasks: "{{ role_path }}/tasks/install.yml"
  19. - name: Perform LiveKit Server uninstallation tasks
  20. when: not livekit_server_enabled | bool
  21. tags:
  22. - setup-all
  23. - setup-livekit-server
  24. block:
  25. - name: Uninstall LiveKit Server
  26. ansible.builtin.include_tasks: "{{ role_path }}/tasks/uninstall.yml"