Add support for amd64 and i386 squeeze autoinstalls.
[invirt/packages/invirt-web.git] / code / static / preseed / lucid.preseed
1 # Download packages from mirrors.mit.edu
2 d-i mirror/country string enter information manually
3 d-i mirror/http/countries string manual
4 d-i mirror/http/hostname string mirrors.mit.edu
5 d-i mirror/http/directory string /ubuntu/
6 d-i mirror/http/proxy string 
7
8 # Use time.mit.edu for NTP syncing
9 d-i clock-setup/ntp-server string time.mit.edu
10
11 # Guided partitioning with LVM
12 d-i partman-auto/method string lvm
13 d-i partman-auto/choose_recipe select atomic
14 d-i partman-lvm/confirm boolean true
15 d-i partman-lvm/confirm_nooverwrite boolean true
16 d-i partman/confirm_write_new_label boolean true
17 d-i partman/choose_partition select finish
18 d-i partman/confirm boolean true
19 d-i partman/confirm_nooverwrite boolean true
20
21 # Use the linux-virtual kernel
22 d-i base-installer/kernel/image string linux-virtual
23
24 # Create just a root account
25 d-i passwd/root-login boolean true
26 d-i passwd/root-password string fake_value
27 d-i passwd/root-password-again string fake_value
28 d-i passwd/make-user boolean false
29
30 # Use GRUB 1 so PyGrub can read the menu.lst
31 d-i grub-installer/grub2_instead_of_grub_legacy boolean false
32 # Clear the list of boot device so GRUB doesn't actually get installed
33 # (grub fails to properly install on /dev/xvda)
34 d-i grub-installer/bootdev string 
35 d-i grub-installer/only_debian boolean false
36 d-i grub-installer/with_other_os boolean false
37
38 # Remove the root password so users can log in on the console
39 d-i preseed/late_command string in-target passwd -d root
40
41 # Avoid that last message about the install being complete.
42 d-i finish-install/reboot_in_progress note