|
@@ -14,9 +14,7 @@ d-i keyboard-configuration/toggle select No toggling |
|
|
### Network console |
|
|
### Network console |
|
|
|
|
|
|
|
|
### Hostname |
|
|
### Hostname |
|
|
{# |
|
|
|
|
|
d-i netcfg/hostname string {{inventory_hostname}} |
|
|
|
|
|
#} |
|
|
|
|
|
|
|
|
{# d-i netcfg/hostname string {{inventory_hostname}} #} |
|
|
|
|
|
|
|
|
### Mirror settings |
|
|
### Mirror settings |
|
|
d-i mirror/country string manual |
|
|
d-i mirror/country string manual |
|
@@ -25,13 +23,8 @@ d-i mirror/http/directory string /debian |
|
|
d-i mirror/http/proxy string |
|
|
d-i mirror/http/proxy string |
|
|
|
|
|
|
|
|
### Account setup |
|
|
### Account setup |
|
|
# Skip creation of a root account (normal user account will be able to |
|
|
|
|
|
# use sudo). |
|
|
|
|
|
d-i passwd/root-login boolean true |
|
|
d-i passwd/root-login boolean true |
|
|
# Alternatively, to skip creation of a normal user account. |
|
|
|
|
|
d-i passwd/make-user boolean false |
|
|
d-i passwd/make-user boolean false |
|
|
|
|
|
|
|
|
# Root password |
|
|
|
|
|
{% if root_password is defined %} |
|
|
{% if root_password is defined %} |
|
|
d-i passwd/root-password-crypted password {{ root_password }} |
|
|
d-i passwd/root-password-crypted password {{ root_password }} |
|
|
{% endif %} |
|
|
{% endif %} |
|
@@ -53,9 +46,9 @@ d-i partman/mount_style select uuid |
|
|
d-i partman/default_filesystem string btrfs |
|
|
d-i partman/default_filesystem string btrfs |
|
|
|
|
|
|
|
|
### Apt setup |
|
|
### Apt setup |
|
|
# You can choose to install non-free and contrib software. |
|
|
|
|
|
d-i apt-setup/non-free boolean {{ debian_nonfree_firmware }} |
|
|
|
|
|
d-i apt-setup/contrib boolean {{ debian_nonfree_firmware }} |
|
|
|
|
|
|
|
|
d-i apt-setup/use_mirror boolean true |
|
|
|
|
|
d-i apt-setup/non-free boolean {{ debian_nonfree_firmware | default(false) }} |
|
|
|
|
|
d-i apt-setup/contrib boolean {{ debian_nonfree_firmware | default(false) }} |
|
|
d-i apt-setup/services-select multiselect security,updates |
|
|
d-i apt-setup/services-select multiselect security,updates |
|
|
d-i apt-setup/security_host string security.debian.org |
|
|
d-i apt-setup/security_host string security.debian.org |
|
|
|
|
|
|
|
|