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.

28 lines
567B

  1. ---
  2. - include: debian.yml
  3. when: ansible_os_family == "Debian"
  4. - include: gentoo.yml
  5. when: ansible_os_family == "Gentoo"
  6. #- name: debootstrap download
  7. # command:
  8. # debootstrap
  9. # --download-only
  10. # --make-tarball={{debootstrap_tarball}}
  11. # {{debootstrap_args}}
  12. # {{debootstrap_suite}}
  13. # {{debootstrap_download_directory}}
  14. # {{debian_mirror}}
  15. # args:
  16. # creates: "{{debootstrap_tarball}}"
  17. - name: debootstrap
  18. command:
  19. debootstrap
  20. {{debootstrap_args}}
  21. {{debootstrap_suite}}
  22. {{root_target_directory}}
  23. {{debian_mirror}}