|
|
@@ -14,7 +14,36 @@ |
|
|
|
- name: lb config |
|
|
|
command: |
|
|
|
lb config |
|
|
|
{{ lookup('template','lb-config-args.j2') }} |
|
|
|
|
|
|
|
{% if live_build_distribution is defined %} |
|
|
|
--distribution "{{ live_build_distribution }}" |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
--mirror-bootstrap "{{ debian_mirror }}" |
|
|
|
--mirror-chroot-security "{{ debian_security_mirror }}" |
|
|
|
--mirror-binary "{{ debian_mirror }}" |
|
|
|
--mirror-binary-security "{{ debian_security_mirror }}" |
|
|
|
|
|
|
|
{% if debian_nonfree_firmware %} |
|
|
|
--archive-areas "main contrib non-free" |
|
|
|
--firmware-chroot true |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% if live_build_bootappend_live is defined %} |
|
|
|
--bootappend-live "{{ live_build_bootappend_live }}" |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% if (debian_backports is defined) and (debian_backports == true) %} |
|
|
|
--backports true |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% if debian_live_debian_installer is defined %} |
|
|
|
--debian-installer "{{ debian_live_debian_installer }}" |
|
|
|
--debian-installer-gui "{{ live_build_debian_installer_gui | default(false) }}" |
|
|
|
{% if debian_nonfree_firmware %} |
|
|
|
--firmware-binary true |
|
|
|
{% endif %} |
|
|
|
{% endif %} |
|
|
|
args: |
|
|
|
chdir: "{{ live_build_directory }}" |
|
|
|
|
|
|
|