Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. d-i partman-auto/method string raid
  2. d-i partman-auto/disk string /dev/sda /dev/sdb /dev/sdc /dev/sdd
  3.  
  4. d-i partman-auto/expert_recipe string
  5. multiraid::
  6. 512 10 512 raid
  7. $primary{ }
  8. method{ raid }
  9. .
  10. 2000 20 3000 raid
  11. method{ raid }
  12. .
  13. 10000 30 4000000 raid
  14. method { raid }
  15. .
  16. 1000 40 1000 linux-swap
  17. method { swap }
  18. format { }
  19. .
  20.  
  21. d-i partman-auto-raid/recipe string
  22. 10 4 0 ext4 /boot
  23. /dev/sda1#/dev/sdb1#/dev/sdc1#/dev/sdd1
  24. .
  25. 10 4 0 ext4 /
  26. /dev/sda5#/dev/sdb5#/dev/sdc5#/dev/sdd5
  27. .
  28. 10 4 0 ext4 /var/lib/vz
  29. /dev/sda7#/dev/sdb7#/dev/sdc7#/dev/sdd7
  30. .
  31.  
  32. d-i partman-md/confirm boolean true
  33. d-i partman-md/device_remove_md boolean true
  34.  
  35. d-i partman/confirm_write_new_label boolean true
  36. d-i partman/choose_partition select finish
  37. d-i partman/confirm boolean true
  38.  
  39. d-i mdadm/boot_degraded boolean true
  40.  
  41. # This command is run immediately before the partitioner starts. It may be
  42. # useful to apply dynamic partitioner preseeding that depends on the state
  43. # of the disks (which may not be visible when preseed/early_command runs).
  44. d-i partman/early_command string mdadm --stop /dev/md127 && mdadm --remove /dev/md127
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement