Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

32 lines
1.2KB

  1. {% if debian_live_build_distribution is defined %}
  2. --distribution "{{ debian_live_build_distribution }}"
  3. {% endif %}
  4. {% if debian_live_build_archive_areas is defined %}
  5. --archive-areas "{{ debian_live_build_archive_areas | join(' ') }}"
  6. {% endif %}
  7. --mirror-bootstrap {{ debian_mirror }}
  8. --mirror-binary {{ debian_mirror }}
  9. {% if debian_live_build_bootappend_live is defined %}
  10. --bootappend-live "{{ debian_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. --mirror-binary-updates "{{ debian_mirror }}"
  18. {% if (debian_backports is defined) and (debian_backports == true) %}
  19. --mirror-binary-backports "{{ debian_mirror }}"
  20. {% endif %}
  21. --mirror-debian-installer "{{ debian_mirror }}"
  22. {% endif %}
  23. {% if debian_security_mirror is defined %}
  24. --mirror-binary-security "{{ debian_security_mirror }}"
  25. {% endif %}
  26. {% if (debian_backports is defined) and (debian_backports == true) %}
  27. --backports true
  28. {% endif %}
  29. {% if debian_components is defined %}
  30. --archive-areas {% debian_components | join(",") %}
  31. {% endif %}