No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

24 líneas
799B

  1. {% if live_build_distribution is defined %}
  2. --distribution "{{ live_build_distribution }}"
  3. {% endif %}
  4. --mirror-bootstrap "{{ debian_mirror }}"
  5. --mirror-chroot-security "{{ debian_security_mirror }}"
  6. --mirror-binary "{{ debian_mirror }}"
  7. --mirror-binary-security "{{ debian_security_mirror }}"
  8. {% if debian_nonfree_firmware %}
  9. --archive-areas "main contrib non-free"
  10. --firmware-chroot true
  11. {% endif %}
  12. {% if live_build_bootappend_live is defined %}
  13. --bootappend-live "{{ live_build_bootappend_live }}"
  14. {% endif %}
  15. {% if (debian_backports is defined) and (debian_backports == true) %}
  16. --backports true
  17. {% endif %}
  18. {% if debian_live_debian_installer is defined %}
  19. --debian-installer "{{ debian_live_debian_installer }}"
  20. {% if debian_nonfree_firmware %}
  21. --firmware-binary true
  22. {% endif %}
  23. {% endif %}