forked from cal/vagrant-ubuntu-precise-64
-
Notifications
You must be signed in to change notification settings - Fork 0
/
preseed.cfg
66 lines (52 loc) · 2.33 KB
/
preseed.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
### Localization
d-i debian-installer/language string en
d-i debian-installer/country string AU
d-i debian-installer/locale string en_US.UTF-8
# Locale
d-i localechooser/preferred-locale string en_US.UTF-8
d-i localechooser/supported-locales en_US.UTF-8
# Keyboard selection.
d-i console-keymaps-at/keymap select us
d-i console-setup/ask_detect boolean false
d-i console-setup/modelcode string skip-config
d-i keyboard-configuration/layout select English (US)
d-i keyboard-configuration/xkb-keymap select us
# Pick any network interface and go with it
d-i netcfg/get_hostname string vagrant-ubuntu-64
d-i netcfg/get_domain string vagrantup.com
# What's a vagrant?
d-i passwd/user-fullname string
d-i passwd/username string vagrant
d-i passwd/user-password password vagrant
d-i passwd/user-password-again password vagrant
d-i user-setup/allow-password-weak boolean true
d-i user-setup/encrypt-home boolean false
# We've got all the time in the world
d-i time/zone string Australia/Melbourne
d-i clock-setup/utc boolean true
# Need to do something about that disk
d-i partman-auto/method string regular
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
# No proxy, please
d-i mirror/http/proxy string
# Only install the standard system and language packs.
tasksel tasksel/first multiselect
d-i preseed/early_command string . /usr/share/debconf/confmodule; db_get debconf/priority; case $RET in low|medium) db_fset tasksel/first seen false; echo 'tasksel tasksel/first seen false' >>/var/lib/preseed/log ;; esac
d-i pkgsel/language-pack-patterns string
# No language support packages.
d-i pkgsel/install-language-support boolean false
# Individual additional packages to install
d-i pkgsel/include string build-essential ruby-dev rubygems puppet ssh
# Whether to upgrade packages after debootstrap.
# Allowed values: none, safe-upgrade, full-upgrade
d-i pkgsel/upgrade select safe-upgrade
# Go grub, go!
d-i grub-installer/only_debian boolean true
# Wrapping things up
d-i preseed/late_command string cp /cdrom/late_command.sh /target/tmp/late_command.sh && in-target chmod +x /tmp/late_command.sh && in-target /tmp/late_command.sh
# Shut down, already
d-i finish-install/reboot_in_progress note
d-i debian-installer/exit/poweroff boolean true