|
|
- ### Localization
- # Preseeding only locale sets language, country and locale.
- d-i debian-installer/locale string en_US
-
- # Keyboard selection.
- d-i keyboard-configuration/xkb-keymap select us
-
- ### Network configuration
- # netcfg will choose an interface that has link if possible. This makes it
- # skip displaying a list if there is more than one interface.
- d-i netcfg/choose_interface select auto
-
- # Disable that annoying WEP key dialog.
- d-i netcfg/wireless_wep string
-
- ### Mirror settings
- d-i mirror/country string manual
- d-i mirror/http/hostname string http.us.debian.org
- d-i mirror/http/directory string /debian
- d-i mirror/http/proxy string
-
- ### Account setup
- # Skip creation of a root account (normal user account will be able to
- # use sudo).
- d-i passwd/root-login boolean false
-
- ## Package setup
- d-i hw-detect/load_firmware boolean false
- d-i hw-detect/load_media boolean false
- apt-cdrom-setup apt-setup/cdrom/set-first boolean false
- tasksel tasksel/first multiselect print-server, ssh-server, standard
- d-i pkgsel/include string sudo, unattended-upgrades
- popularity-contest popularity-contest/participate boolean false
-
- ### Clock and time zone setup
- d-i clock-setup/utc boolean true
- d-i time/zone string UTC
- d-i clock-setup/ntp boolean true
-
- ### Partitioning
- d-i partman-auto/method string lvm
- d-i partman-lvm/device_remove_lvm boolean true
- d-i partman-md/device_remove_md boolean true
- d-i partman-lvm/confirm boolean true
- d-i partman-lvm/confirm_nooverwrite boolean true
- d-i partman-auto/choose_recipe select atomic
- d-i partman-partitioning/confirm_write_new_label boolean true
- d-i partman/choose_partition select finish
- d-i partman/confirm boolean true
- d-i partman/confirm_nooverwrite boolean true
-
- # This makes partman automatically partition without confirmation.
- d-i partman-md/confirm boolean true
- d-i partman-partitioning/confirm_write_new_label boolean true
- d-i partman/choose_partition select finish
- d-i partman/confirm boolean true
- d-i partman/confirm_nooverwrite boolean true
-
- ### Boot loader installation
- d-i grub-installer/only_debian boolean true
- d-i grub-installer/with_other_os boolean true
- d-i finish-install/reboot_in_progress note
|