Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

12 linhas
384 B

  1. ---
  2. - include_tasks: "{{ role_path }}/tasks/platform/centos.yml"
  3. when: ansible_distribution == 'CentOS'
  4. # The instructions are the same for Debian, Ubuntu, and Raspbian
  5. - include_tasks: "{{ role_path }}/tasks/platform/debian.yml"
  6. when: ansible_distribution == 'Debian'
  7. - include_tasks: "{{ role_path }}/tasks/platform/archlinux.yml"
  8. when: ansible_distribution == 'Archlinux'