Advertisement
Guest User

Untitled

a guest
Jul 29th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. ### Localization
  2. d-i debian-installer/locale string en_US
  3.  
  4. # Keyboard selection.
  5. d-i console-setup/ask_detect boolean false
  6. # bug 747854 d-i console-setup/layoutcode string se
  7. d-i keyboard-configuration/layoutcode string se
  8.  
  9. ### Network configuration
  10. d-i netcfg/choose_interface select auto
  11. d-i netcfg/get_hostname string unassigned-hostname
  12. d-i netcfg/get_domain string unassigned-domain
  13. d-i netcfg/get_hostname seen true
  14. d-i netcfg/get_domain seen true
  15.  
  16. ### Mirror settings
  17. d-i mirror/country string manual
  18. d-i mirror/http/directory string /ubuntu/
  19. #d-i mirror/http/countries select SE
  20. d-i mirror/http/proxy string http://my.site.mine:8080 <http://my.site.mine:8080/>
  21. d-i mirror/http/proxy string
  22. d-i mirror/http/hostname string my.site.mine
  23. d-i mirror/http/mirror select my.site.mine
  24.  
  25. ### Clock and time zone setup
  26. d-i clock-setup/utc boolean true
  27. d-i time/zone string Europe/Stockholm
  28. d-i clock-setup/ntp boolean true
  29.  
  30. ### Account setup
  31. d-i passwd/root-login boolean true
  32. d-i passwd/root-password-crypted password hash/
  33. d-i passwd/user-fullname string BETE User
  34. d-i passwd/username string bete
  35. d-i passwd/user-password-crypted password hash.
  36. d-i user-setup/allow-password-weak boolean true
  37. d-i user-setup/encrypt-home boolean false
  38.  
  39. ### Apt setup
  40. d-i apt-setup/non-free boolean true
  41. d-i apt-setup/universe boolean true
  42. d-i apt-setup/restricted boolean true
  43. d-i apt-setup/multiverse boolean true
  44.  
  45. #### Packages
  46. ##tasksel tasksel/first multiselect ubuntu-desktop
  47. d-i pkgsel/include string openssh-server build-essential debconf-utils
  48. #d-i base-installer/kernel/override-image string linux-server
  49.  
  50. ### Boot loader installation
  51. d-i grub-installer/only_debian boolean true
  52. d-i grub-installer/with_other_os boolean true
  53. #d-i grub-installer/only_debian boolean false
  54. #d-i grub-installer/with_other_os boolean false
  55. #d-i grub-installer/bootdev string (hd0)
  56.  
  57.  
  58. ### Finishing up the installation
  59. d-i finish-install/reboot_in_progress note
  60.  
  61. ### X configuration
  62. xserver-xorg xserver-xorg/config/monitor/selection-method select Medium
  63. xserver-xorg xserver-xorg/config/monitor/lcd boolean true
  64. xserver-xorg xserver-xorg/autodetect_monitor boolean true
  65. xserver-xorg xserver-xorg/autodetect_mouse boolean true
  66. xserver-xorg xserver-xorg/autodetect_video_card boolean true
  67. xserver-xorg xserver-xorg/autodetect_keyboard boolean true
  68.  
  69. ### Preseeding other packages
  70.  
  71. ### Custom stuff
  72. #base-config bete/http/server string
  73. base-config bete/ubuntu/release string 14.04
  74. base-config bete/nfs/server string my.site.mine
  75. base-config bete/nfs/config string /export/vol01/ubuntu/d-i/config
  76.  
  77. #### Advanced options
  78. d-i preseed/late_command string wget http://my.site.mine/ubuntu/d-i/config/pre-late.sh -O /tmp/pre-late.sh; sh -x /tmp/pre-late.sh
  79. d-i preseed/run string classes.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement