1
0
mirror of https://github.com/krislamo/preseed synced 2024-09-20 04:30:36 +00:00

Formatting and comments

This commit is contained in:
Kris Lamoureux 2020-02-25 00:58:16 -05:00
parent 7398cd4988
commit 04e0b3f34f
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925

View File

@ -1,9 +1,9 @@
#### Contents of the preconfiguration file (for buster) #### QEMU/KVM Virtual Machine Seed for Debian Buster
# Make settings priority
d-i debconf/priority string critical d-i debconf/priority string critical
### Localization ### Localization
# Preseeding only locale sets language, country and locale. # Preseeding only locale sets language, country and locale.
d-i debian-installer/locale string en_US d-i debian-installer/locale string en_US
@ -38,23 +38,26 @@ d-i netcfg/hostname string debian-base
d-i netcfg/wireless_wep string d-i netcfg/wireless_wep string
### Mirror settings ### Mirror settings
d-i mirror/country string manual d-i mirror/country string manual
d-i mirror/http/hostname string http.us.debian.org d-i mirror/http/hostname string http.us.debian.org
d-i mirror/http/directory string /debian d-i mirror/http/directory string /debian
d-i mirror/http/proxy string d-i mirror/http/proxy string
### Account setup ### Account setup
# Don't set a root password # Don't set a root password
d-i passwd/root-login boolean false d-i passwd/root-login boolean false
# Alternatively, to skip creation of a normal user account. # Alternatively, to skip creation of a normal user account.
#d-i passwd/make-user boolean false #d-i passwd/make-user boolean false
# To create a normal user account. # Create a normal user account.
d-i passwd/user-fullname string Kris Lamoureux d-i passwd/user-fullname string Kris Lamoureux
d-i passwd/username string kris d-i passwd/username string kris
#d-i passwd/user-password-crypted password [crypt(3) hash] #d-i passwd/user-password-crypted password [crypt(3) hash]
### Clock and time zone setup ### Clock and time zone setup
# Controls whether or not the hardware clock is set to UTC. # Controls whether or not the hardware clock is set to UTC.
d-i clock-setup/utc boolean true d-i clock-setup/utc boolean true
@ -100,6 +103,8 @@ d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true d-i partman/confirm_nooverwrite boolean true
### Package selection ### Package selection
# Install SSH server
tasksel tasksel/first multiselect ssh-server tasksel tasksel/first multiselect ssh-server
# Upgrade packages after debootstrap # Upgrade packages after debootstrap
@ -119,7 +124,7 @@ d-i finish-install/reboot_in_progress note
# Just after preseeding is read, reset network settings # Just after preseeding is read, reset network settings
d-i preseed/early_command string kill-all-dhcp; netcfg d-i preseed/early_command string kill-all-dhcp; netcfg
# Just before install finishes install SSH keys into root # Just before install finishes, install SSH keys into root
d-i preseed/late_command string \ d-i preseed/late_command string \
mkdir -p /target/root/.ssh; \ mkdir -p /target/root/.ssh; \
wget -O /target/root/.ssh/authorized_keys \ wget -O /target/root/.ssh/authorized_keys \