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.

31 lines
1.1KB

  1. {% if live_build_distribution is defined %}
  2. --distribution "{{ live_build_distribution }}"
  3. {% endif %}
  4. {% if live_build_archive_areas is defined %}
  5. --archive-areas "{{ live_build_archive_areas | join(' ') }}"
  6. {% endif %}
  7. --mirror-bootstrap {{ debian_mirror }}
  8. --mirror-binary {{ debian_mirror }}
  9. {% if live_build_bootappend_live is defined %}
  10. --bootappend-live "{{ live_build_bootappend_live }}"
  11. {% endif %}
  12. {% if debian_live_debian_installer is defined %}
  13. --debian-installer "{{ debian_live_debian_installer }}"
  14. {% endif %}
  15. {% if debian_mirror is defined %}
  16. --mirror-binary "{{ debian_mirror }}"
  17. {% if (debian_backports is defined) and (debian_backports == true) %}
  18. --mirror-binary-backports "{{ debian_mirror }}"
  19. {% endif %}
  20. --mirror-debian-installer "{{ debian_mirror }}"
  21. {% endif %}
  22. {% if debian_security_mirror is defined %}
  23. --mirror-binary-security "{{ debian_security_mirror }}"
  24. {% endif %}
  25. {% if (debian_backports is defined) and (debian_backports == true) %}
  26. --backports true
  27. {% endif %}
  28. {% if debian_components is defined %}
  29. --archive-areas {{ debian_components | join(",") }}
  30. {% endif %}