-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathubuntu-12.04.2-server-preseed.cfg
51 lines (41 loc) · 1.41 KB
/
ubuntu-12.04.2-server-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
# cribbed from https://gist.github.com/Josiah/6005339
# with modifications from https://help.ubuntu.com/12.04/installation-guide/example-preseed.txt
# time
d-i clock-setup/utc boolean true
d-i time/zone string GMT
# language
d-i pkgsel/install-language-support boolean false
# user: user/pass is packer/packer
d-i passwd/user-fullname string packer
d-i passwd/username string packer
d-i passwd/user-password password packer
d-i passwd/user-password-again password packer
d-i user-setup/allow-password-weak boolean true
d-i user-setup/encrypt-home boolean false
# partitioning
d-i partman-auto/method string lvm
d-i partman-auto-lvm/guided_size string max
d-i partman-auto/choose_recipe select atomic
#
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-md/device_remove_md boolean true
#
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-lvm/confirm_nooverwrite boolean true
d-i partman/confirm_nooverwrite boolean true
# mirrors
d-i mirror/country string manual
d-i mirror/http/hostname string archive.ubuntu.com
d-i mirror/http/directory string /ubuntu
d-i mirror/http/proxy string
# updates
d-i pkgsel/update-policy select none
# server
tasksel tasksel/first multiselect standard
# ssh
d-i pkgsel/include string openssh-server
# other
d-i grub-installer/only_debian boolean true
d-i finish-install/reboot_in_progress note