Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

17 lignes
565 B

  1. # SPDX-FileCopyrightText: 2022 Slavi Pantaleev
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. # This is for both RedHat 7 and 8
  6. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/ensure_fuse_installed_redhat.yml"
  7. when: ansible_os_family == 'RedHat'
  8. # This is for both Debian and Raspbian
  9. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/ensure_fuse_installed_debian.yml"
  10. when: ansible_os_family == 'Debian'
  11. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/ensure_fuse_installed_archlinux.yml"
  12. when: ansible_os_family == 'Archlinux'