feat: moved network config to template and added additional_packages var

This commit is contained in:
AJ Schroeder
2024-06-29 10:29:47 -05:00
parent b885f907db
commit e9722d61d4

View File

@@ -23,10 +23,7 @@ d-i grub-installer/only_debian boolean true
${storage} ${storage}
# Network configuration # Network configuration
d-i netcfg/choose_interface select auto ${network}
d-i netcfg/get_hostname string unassigned-hostname
d-i netcfg/get_domain string unassigned-domain
### Apt setup ### Apt setup
# Choose, if you want to scan additional installation media # Choose, if you want to scan additional installation media
@@ -63,7 +60,7 @@ d-i passwd/user-password-crypted password ${build_password_encrypted}
# Package Configuration # Package Configuration
d-i pkgsel/run_tasksel boolean false d-i pkgsel/run_tasksel boolean false
d-i pkgsel/include string openssh-server qemu-guest-agent python3 d-i pkgsel/include string openssh-server qemu-guest-agent python3-apt ${additional_packages}
# You can choose, if your system will report back on what software you have # You can choose, if your system will report back on what software you have
# installed, and what software you use. The default is not to report back, # installed, and what software you use. The default is not to report back,