Advertisement
Guest User

naas.preseed

a guest
Sep 8th, 2017
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. # general
  2. d-i debian-installer/language string en
  3. d-i debian-installer/locale string en_US.UTF-8
  4. d-i debian-installer/splash boolean false
  5. d-i debian-installer/country string US
  6. d-i console-setup/ask_detect boolean false
  7. d-i console-setup/layoutcode string us
  8. d-i console-setup/variantcode string
  9. d-i pkgsel/install-language-support boolean false
  10.  
  11. # keyboard
  12. d-i console-setup/ask_detect boolean false
  13. d-i keyboard-configuration/layoutcode string us
  14. d-i keyboard-configuration/variant select us
  15.  
  16. # network
  17. d-i netcfg/enable boolean false
  18. #d-i netcfg/choose_interface select ens33
  19. d-i netcfg/dhcp_failed note
  20. d-i netcfg/dhcp_options select Do not configure the network at this time
  21. d-i netcfg/get_hostname string unassigned-hostname
  22. d-i netcfg/get_domain string unassigned-domain
  23. d-i netcfg/wireless_wep string
  24.  
  25. # user account
  26. d-i passwd/root-login boolean false
  27. d-i passwd/make-user boolean true
  28. d-i passwd/user-fullname string ubuntu
  29. d-i passwd/username string ubuntu
  30. d-i passwd/user-password password password
  31. d-i passwd/user-password-again password password
  32. d-i user-setup/allow-password-weak boolean true
  33. d-i user-setup/encrypt-home boolean false
  34.  
  35. # time/clock
  36. d-i clock-setup/utc boolean true
  37. d-i clock-setup/ntp boolean true
  38. d-i time/zone string Etc/UTC
  39. d-i clock-setup/ntp boolean true
  40.  
  41. # mirror
  42. d-i mirror/http/proxy string
  43. d-i mirror/http/directory string /
  44.  
  45. d-i mirror/suite string xenial
  46. #d-i apt-setup/security boolean true
  47. #d-i apt-setup/security-updates boolean true
  48. #d-i apt-setup/services-select multiselect security
  49. #d-i apt-setup/security_host string security.ubuntu.com
  50. d-i apt-setup/security_host string
  51. d-i apt-setup/security_path string /
  52. d-i tasksel/first multiselect standard system utilities, OpenSSH server, Basic Ubuntu server
  53.  
  54. # package selection
  55. #tasksel tasksel/first multiselect ubuntu-server, standard
  56. d-i pkgsel/upgrade select none
  57. d-i pkgsel/update-policy select none
  58.  
  59. #tried below as well
  60. # d-i pkgsel/include string openssh-server ntp build-essential postgresql
  61. d-i pkgsel/include string openssh-server ntp build-essential postgresql-9.5
  62.  
  63. # bootloader
  64. d-i grub-installer/skip boolean false
  65. d-i grub-installer/only_debian boolean true
  66. d-i grub-installer/with_other_os boolean true
  67.  
  68. # other
  69. d-i cdrom-detect/eject boolean true
  70. d-i debian-installer/exit/halt boolean false
  71. d-i debian-installer/exit/poweroff boolean false
  72. d-i debian-installer/allow_unauthenticated string true
  73.  
  74. d-i finish-install/keep-consoles boolean false
  75. d-i finish-install/reboot_in_progress note
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement