-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebian.cfg
73 lines (62 loc) · 2.37 KB
/
debian.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
67
68
69
70
71
72
73
#
# Based upon: https://help.ubuntu.com/12.04/installation-guide/example-preseed.txt
#
# localisation
d-i debian-installer/locale string en_US
d-i localechooser/supported-locales en_US.UTF-8
d-i console-keymaps-at/keymap select us
d-i keyboard-configuration/xkb-keymap select us
# networking
d-i netcfg/choose_interface select auto
d-i netcfg/disable_dhcp boolean false
# d-i netcfg/get_hostname string unassigned-hostname
# d-i netcfg/get_domain string unassigned-domain
# apt mirrors
d-i mirror/country string manual
d-i mirror/http/hostname string http.at.debian.org
d-i mirror/http/directory string /debian
d-i mirror/http/proxy string
# clock and time zone
d-i clock-setup/utc boolean true
d-i time/zone string GMT
d-i clock-setup/ntp boolean true
# partitioning
d-i partman-auto/method string lvm
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-md/device_remove_md boolean true
d-i partman-lvm/confirm boolean true
d-i partman-lvm/confirm_nooverwrite boolean true
#d-i partman-auto-lvm/guided_size string max
d-i partman-auto/choose_recipe select atomic
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
# users
d-i passwd/root-login boolean true
d-i passwd/make-user boolean true
d-i passwd/root-password password r00tme
d-i passwd/root-password-again password r00tme
d-i passwd/user-fullname string vagrant
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
d-i passwd/user-default-groups vagrant sudo
d-i passwd/user-uid string 900
# packages
tasksel tasksel/first multiselect standard
d-i pkgsel/include string open-vm-tools openssh-server sudo
d-i pkgsel/upgrade select full-upgrade
d-i pkgsel/update-policy select none
d-i popularity-contest/participate boolean false
d-i preseed/late_command string sed -i '/^deb cdrom:/s/^/#/' /target/etc/apt/sources.list
apt-cdrom-setup apt-setup/cdrom/set-first boolean false
apt-mirror-setup apt-setup/use_mirror boolean true
postfix postfix/main_mailer_type select No configuration
# boot loader
d-i grub-installer/bootdev string default
d-i grub-installer/only_debian boolean true
# hide the shutdown notice
d-i finish-install/reboot_in_progress note