~ubuntu-on-ec2/vmbuilder/automated-ec2-builds-fginther

« back to all changes in this revision

Viewing changes to live-config/binary_debian-installer/preseed.cfg

  • Committer: Ben Howard
  • Date: 2011-07-27 23:17:10 UTC
  • Revision ID: ben.howard@canonical.com-20110727231710-iv7naynricd0x5jk
Code-review for new build-lb-ec2-image changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
####################################################################
 
2
# General
 
3
####################################################################
 
4
 
 
5
# Once installation is complete, automatically power off.
 
6
d-i finish-install/reboot_in_progress note
 
7
d-i debian-installer/exit/poweroff boolean true
 
8
 
 
9
####################################################################
 
10
# Installation Sources
 
11
####################################################################
 
12
 
 
13
# Configure the sources.list
 
14
d-i mirror/country string manual
 
15
d-i mirror/http/hostname  string archive.ubuntu.com
 
16
d-i mirror/http/directory string /ubuntu/
 
17
d-i apt-setup/use_mirror boolean true
 
18
d-i apt-setup/mirror/error select Change mirror
 
19
d-i apt-setup/multiverse boolean true
 
20
d-i apt-setup/restricted boolean true
 
21
d-i apt-setup/universe boolean true
 
22
 
 
23
####################################################################
 
24
# Networking
 
25
####################################################################
 
26
 
 
27
# Network Configuration
 
28
d-i netcfg/choose_interface select auto
 
29
d-i netcfg/disable_dhcp boolean false
 
30
d-i netcfg/wireless_wep string
 
31
d-i netcfg/get_hostname string ubuntu
 
32
d-i netcfg/dhcp_options select Do not configure the network at this time
 
33
d-i netcfg/dhcp_failed note
 
34
d-i netcfg/dhcp_timeout string 3
 
35
 
 
36
####################################################################
 
37
# Disk Partitioning / Boot loader
 
38
####################################################################
 
39
 
 
40
### Disk Partitioning ###
 
41
 
 
42
# Configure auto partitioner
 
43
d-i partman-auto/automatically_partition select use_device
 
44
d-i partman-auto/method string regular
 
45
d-i partman-auto/expert_recipe_file string /cdrom/install/disk-recipe
 
46
d-i partman-auto/disk string /dev/sda
 
47
 
 
48
# Do not filter out disks with mounted partitions.
 
49
d-i partman/filter_mounted boolean false
 
50
# Remove existing software RAID partitions if they exist.
 
51
d-i partman-md/device_remove_md boolean true
 
52
# Do not encrypt user's home directory.
 
53
d-i user-setup/encrypt-home boolean false
 
54
# Do not require mount points for partitions with filesystems.
 
55
d-i partman-basicfilesystems/no_mount_point boolean false
 
56
 
 
57
# Partition without confirmation
 
58
d-i partman/confirm_write_new_label boolean true
 
59
d-i partman/choose_partition select Finish partitioning and write changes to disk
 
60
d-i partman/confirm_nooverwrite true
 
61
d-i partman/confirm boolean true
 
62
 
 
63
### Boot loader ###
 
64
 
 
65
# This one makes grub-installer install to the MBR even if it finds some other OS
 
66
d-i grub-installer/with_other_os boolean true
 
67
d-i grub-installer/only_debian boolean true
 
68
d-i grub-installer/bootdev string /dev/sda
 
69
 
 
70
####################################################################
 
71
# Localizations / Timezone
 
72
####################################################################
 
73
 
 
74
### Locale ###
 
75
d-i debian-installer/locale string en_US
 
76
 
 
77
### Timezone ###
 
78
d-i time/zone select US/Pacific
 
79
d-i clock-setup/utc boolean true
 
80
d-i clock-setup/ntp boolean false
 
81
d-i console-setup/ask_detect boolean false
 
82
d-i console-setup/layoutcode string us
 
83
 
 
84
####################################################################
 
85
# User Creation
 
86
####################################################################
 
87
 
 
88
# Root User
 
89
d-i passwd/root-login boolean false
 
90
 
 
91
# Mortal User
 
92
d-i passwd/user-fullname string Ubuntu
 
93
d-i passwd/username string ubuntu
 
94
d-i user-setup/allow-password-empty boolean true
 
95
#d-i passwd/user-password password
 
96
#d-i passwd/user-password-again password
 
97
d-i passwd/auto-login boolean false