-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpreseed.cfg
38 lines (31 loc) · 1.18 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
### Base system installation
d-i base-installer/kernel/override-image string linux-server
### Account setup
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
### Clock and time zone setup
d-i clock-setup/utc boolean true
#d-i time/zone string UTC
d-i time/zone string Europe/Moscow
### Partitioning
d-i partman-auto/method string lvm
d-i partman-lvm/confirm_nooverwrite boolean true
d-i partman-auto-lvm/guided_size string max
d-i partman/choose_partition select finish
d-i partman/confirm_nooverwrite boolean true
### Mirror settings
#d-i mirror/country string JP
d-i mirror/http/proxy string
### Package selection
tasksel tasksel/first multiselect standard
d-i pkgsel/update-policy select none
d-i pkgsel/include string openssh-server open-vm-tools cloud-init
d-i pkgsel/install-language-support boolean false
### Boot loader installation
d-i grub-installer/only_debian boolean true
### Finishing up the installation
d-i finish-install/reboot_in_progress note