UniFi Network Controller VM image
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.1 KiB

6 years ago
  1. ### Localization
  2. # Preseeding only locale sets language, country and locale.
  3. d-i debian-installer/locale string en_US
  4. # Keyboard selection.
  5. d-i keyboard-configuration/xkb-keymap select us
  6. ### Network configuration
  7. # netcfg will choose an interface that has link if possible. This makes it
  8. # skip displaying a list if there is more than one interface.
  9. d-i netcfg/choose_interface select auto
  10. # Disable that annoying WEP key dialog.
  11. d-i netcfg/wireless_wep string
  12. ### Mirror settings
  13. d-i mirror/country string manual
  14. d-i mirror/http/hostname string http.us.debian.org
  15. d-i mirror/http/directory string /debian
  16. d-i mirror/http/proxy string
  17. ### Account setup
  18. # Skip creation of a root account (normal user account will be able to
  19. # use sudo).
  20. d-i passwd/root-login boolean false
  21. ## Package setup
  22. d-i hw-detect/load_firmware boolean false
  23. d-i hw-detect/load_media boolean false
  24. apt-cdrom-setup apt-setup/cdrom/set-first boolean false
  25. tasksel tasksel/first multiselect print-server, ssh-server, standard
  26. d-i pkgsel/include string sudo, unattended-upgrades
  27. popularity-contest popularity-contest/participate boolean false
  28. ### Clock and time zone setup
  29. d-i clock-setup/utc boolean true
  30. d-i time/zone string UTC
  31. d-i clock-setup/ntp boolean true
  32. ### Partitioning
  33. d-i partman-auto/method string lvm
  34. d-i partman-lvm/device_remove_lvm boolean true
  35. d-i partman-md/device_remove_md boolean true
  36. d-i partman-lvm/confirm boolean true
  37. d-i partman-lvm/confirm_nooverwrite boolean true
  38. d-i partman-auto/choose_recipe select atomic
  39. d-i partman-partitioning/confirm_write_new_label boolean true
  40. d-i partman/choose_partition select finish
  41. d-i partman/confirm boolean true
  42. d-i partman/confirm_nooverwrite boolean true
  43. # This makes partman automatically partition without confirmation.
  44. d-i partman-md/confirm boolean true
  45. d-i partman-partitioning/confirm_write_new_label boolean true
  46. d-i partman/choose_partition select finish
  47. d-i partman/confirm boolean true
  48. d-i partman/confirm_nooverwrite boolean true
  49. ### Boot loader installation
  50. d-i grub-installer/only_debian boolean true
  51. d-i grub-installer/with_other_os boolean true
  52. d-i finish-install/reboot_in_progress note