daily pastebin goal
46%
SHARE
TWEET

Untitled

a guest May 26th, 2015 227 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # English Language
  2. d-i debian-installer/locale string en_US
  3. d-i debian-installer/language string en
  4. d-i debian-installer/country string US
  5.  
  6. # Partitioning
  7. d-i partman/filter_mounted boolean false
  8. d-i preseed/early_command string umount /dev/sda2 || /bin/true
  9. d-i partman-base partman/unmount_active boolean
  10. d-i partman-auto/disk string /dev/sda
  11. d-i partman-auto/method string regular
  12. d-i partman-lvm/device_remove_lvm boolean true
  13. d-i partman-lvm/confirm boolean true
  14. d-i partman-lvm/confirm_nooverwrite boolean true
  15. d-i partman-auto/choose_recipe select atomic
  16. d-i partman-partitioning/confirm_write_new_label boolean true
  17. d-i partman/choose_partition select finish
  18. d-i preseed/preseed/early_command string unmount /media || /bin/true
  19. d-i preseed/preseed/early_command string unmount /dev/sda || /bin/true
  20. d-i preseed/preseed/early_command string unmount /dev/sda1 || /bin/true
  21. d-i partman/choose_partition select Finish partitioning and write changes to disk
  22. d-i partman/choose_partition select finishd-i partman-md/confirm boolean true
  23.  
  24. ########### Testing ###
  25. d-i partman/filter_mounted boolean false
  26. d-i partman/unmount_active boolean false
  27. d-i partman-auto/disk string /dev/sda
  28. d-i partman-auto/method string regular
  29. d-i partman-lvm/device_remove_lvm boolean true
  30. d-i partman-md/device_remove_md boolean true
  31. d-i partman-lvm/confirm boolean true
  32. d-i partman-auto/choose_recipe select atomic
  33. d-i partman/default_filesystem string ext4
  34. d-i partman-partitioning/confirm_write_new_label boolean true
  35. d-i partman/choose_partition select finish
  36. d-i partman/confirm boolean true
  37. d-i partman/confirm_nooverwrite boolean true
  38. d-i partman/mount_style select uuid
  39. d-i ubiquity/partman-skip-unmount boolean true
  40.  
  41. ##############
  42.  
  43.  
  44. # Keyboard
  45. d-i console-setup/ask_detect boolean false
  46. d-i console-setup/layoutcode string us
  47. d-i keyboard-configuration/xkb-keymap select us
  48.  
  49. #Network Configuration
  50. d-i netcfg/choose_interface select auto
  51.  
  52. #Mirror information
  53. d-i mirror/country string manual
  54. d-i mirror/http/hostname string mirror.lcsee.wvu.edu
  55. d-i mirror/http/directory string /ubuntu
  56. d-i mirror/suite string trusty
  57. d-i apt-setup/security_host string mirror.lcsee.wvu.edu
  58. d-i apt-setup/security_path string /ubuntu
  59.  
  60. #Proxy settings
  61. d-i mirror/http/proxy string http://squid.lcsee.wvu.edu:3128/
  62.  
  63. #Adding ltrusty repos
  64. d-i apt-setup/local0/repository string http://loud.lcsee.wvu.edu/stable/ ltrusty/
  65. d-i apt-setup/local0/comment string LOUD Stable
  66. d-i apt-setup/local0/source boolean true
  67. d-i apt-setup/local0/key string http://loud.lcsee.wvu.edu/loud/lcsee_repo.gpg
  68. d-i apt-setup/local1/repository string http://loud.lcsee.wvu.edu/loud/ ltrusty-test/
  69. d-i apt-setup/local1/comment string LOUD Test
  70. d-i apt-setup/local1/source boolean true
  71. d-i apt-setup/local1/key string http://loud.lcsee.wvu.edu/loud/lcsee_repo.gpg
  72. d-i apt-setup/local2/repository string http://loud.lcsee.wvu.edu/stable/ ltrusty-internal/
  73. d-i apt-setup/local2/comment string LOUD Stable
  74. d-i apt-setup/local2/source boolean true
  75. d-i apt-setup/local2/key string http://loud.lcsee.wvu.edu/loud/lcsee_repo.gpg
  76. d-i apt-setup/local3/repository string http://loud.lcsee.wvu.edu/loud/ ltrusty-internal-test/
  77. d-i apt-setup/local3/comment string LOUD Test
  78. d-i apt-setup/local3/source boolean true
  79. d-i apt-setup/local3/key string http://loud.lcsee.wvu.edu/loud/lcsee_repo.gpg
  80.  
  81. #User
  82. d-i passwd/root-login boolean false
  83. #d-i passwd/root-password-crypted password !
  84. d-i passwd/make-user boolean true
  85. d-i passwd/user-fullname string LOUD
  86. d-i passwd/username string loud
  87. d-i passwd/user-password password loud
  88. d-i passwd/user-password-again password loud
  89. d-i user-setup/allow-password-weak boolean true
  90. d-i user-setup/encrypt-home boolean false
  91.  
  92. #Partitioning
  93. #d-i partman/filter_mounted boolean false
  94. #d-i partman/unmount_active boolean false
  95. #d-i partman-auto/disk string /dev/sda
  96. #d-i partman-auto/method string regular
  97. #d-i partman-lvm/device_remove_lvm boolean true
  98. #d-i partman-md/device_remove_md boolean true
  99. #d-i partman-lvm/confirm boolean true
  100. #d-i partman-auto/choose_recipe select atomic
  101. #d-i partman/default_filesystem string ext4
  102. #d-i partman-partitioning/confirm_write_new_label boolean true
  103. #d-i partman/choose_partition select finish
  104. #d-i partman/confirm boolean true
  105. #d-i partman/confirm_nooverwrite boolean true
  106. #d-i partman/mount_style select uuid
  107.  
  108. #Reboot when done
  109. d-i finish-install/reboot_in_progress note
RAW Paste Data
Top