main.yml 342 B

12345678910111213
  1. ---
  2. # tasks file for fastd
  3. - name: Check architecture
  4. when: ansible_architecture != 'i386' and ansible_architecture != 'amd64' and ansible_architecture !='x86_64'
  5. set_fact:
  6. fastd_install_from_source: true
  7. - include: debian.yml
  8. when: ansible_distribution == "Ubuntu"
  9. - include: debian.yml
  10. when: ansible_distribution == "Debian"