1 | ### Partitioning
|
---|
2 | d-i partman-auto/disk string /dev/sda
|
---|
3 | d-i partman-auto/method string regular
|
---|
4 | d-i partman-lvm/device_remove_lvm boolean true
|
---|
5 | d-i partman-md/device_remove_md boolean true
|
---|
6 | d-i partman-auto/choose_recipe select atomic
|
---|
7 |
|
---|
8 | # This makes partman automatically partition without confirmation
|
---|
9 | d-i partman-partitioning/confirm_write_new_label boolean true
|
---|
10 | d-i partman/choose_partition select finish
|
---|
11 | d-i partman/confirm boolean true
|
---|
12 | d-i partman/confirm_nooverwrite boolean true
|
---|
13 |
|
---|
14 | # Locale
|
---|
15 | d-i debian-installer/locale string @@VBOX_INSERT_LOCALE@@
|
---|
16 | d-i console-setup/ask_detect boolean false
|
---|
17 | d-i console-setup/layoutcode string us
|
---|
18 | d-i keyboard-configuration/xkb-keymap select us
|
---|
19 |
|
---|
20 | # Network
|
---|
21 | d-i netcfg/get_hostname string @@VBOX_INSERT_HOSTNAME_WITHOUT_DOMAIN@@
|
---|
22 | d-i netcfg/get_domain string @@VBOX_INSERT_HOSTNAME_DOMAIN@@
|
---|
23 | d-i netcfg/choose_interface select auto
|
---|
24 |
|
---|
25 | # Clock
|
---|
26 | @@VBOX_COND_IS_RTC_USING_UTC@@
|
---|
27 | d-i clock-setup/utc-auto boolean true
|
---|
28 | d-i clock-setup/utc boolean true
|
---|
29 | @@VBOX_COND_END@@
|
---|
30 | @@VBOX_COND_IS_NOT_RTC_USING_UTC@@
|
---|
31 | d-i clock-setup/utc-auto boolean false
|
---|
32 | d-i clock-setup/utc boolean false
|
---|
33 | @@VBOX_COND_END@@
|
---|
34 | d-i time/zone string @@VBOX_INSERT_TIME_ZONE_UX@@
|
---|
35 | @@VBOX_COND_IS_INSTALLING_ADDITIONS@@d-i clock-setup/ntp boolean false@@VBOX_COND_END@@
|
---|
36 | @@VBOX_COND_IS_NOT_INSTALLING_ADDITIONS@@d-i clock-setup/ntp boolean true@@VBOX_COND_END@@
|
---|
37 |
|
---|
38 | # Packages, Mirrors, Image
|
---|
39 | d-i base-installer/kernel/override-image string linux-server
|
---|
40 | d-i base-installer/kernel/override-image string linux-image-amd64
|
---|
41 | d-i pkgsel/install-language-support boolean false
|
---|
42 |
|
---|
43 | @@VBOX_COND_AVOID_UPDATES_OVER_NETWORK@@
|
---|
44 | d-i apt-setup/use_mirror boolean false
|
---|
45 | d-i netcfg/no_default_route true
|
---|
46 | d-i netcfg/get_nameservers ""
|
---|
47 | @@VBOX_COND_END@@
|
---|
48 |
|
---|
49 | @@VBOX_COND_IS_NOT_MINIMAL_INSTALLATION@@
|
---|
50 | d-i apt-setup/restricted boolean true
|
---|
51 | d-i apt-setup/universe boolean true
|
---|
52 | @@VBOX_COND_END@@@@VBOX_COND_IS_MINIMAL_INSTALLATION@@
|
---|
53 | tasksel tasksel/first multiselect minimal
|
---|
54 | d-i pkgsel/include string openssh-server
|
---|
55 | d-i pkgsel/upgrade select none
|
---|
56 | @@VBOX_COND_END@@
|
---|
57 |
|
---|
58 | # Users
|
---|
59 | d-i passwd/user-fullname string @@VBOX_INSERT_USER_FULL_NAME@@
|
---|
60 | d-i passwd/username string @@VBOX_INSERT_USER_LOGIN@@
|
---|
61 | d-i passwd/user-password password @@VBOX_INSERT_USER_PASSWORD@@
|
---|
62 | d-i passwd/user-password-again password @@VBOX_INSERT_USER_PASSWORD@@
|
---|
63 | d-i passwd/root-login boolean true
|
---|
64 | d-i passwd/root-password password @@VBOX_INSERT_ROOT_PASSWORD@@
|
---|
65 | d-i passwd/root-password-again password @@VBOX_INSERT_ROOT_PASSWORD@@
|
---|
66 | d-i user-setup/allow-password-weak boolean true
|
---|
67 | d-i passwd/user-default-groups string admin
|
---|
68 |
|
---|
69 | # Grub
|
---|
70 | d-i grub-installer/grub2_instead_of_grub_legacy boolean true
|
---|
71 | d-i grub-installer/only_debian boolean true
|
---|
72 |
|
---|
73 | # Due notably to potential USB sticks, the location of the MBR can not be
|
---|
74 | # determined safely in general, so this needs to be specified:
|
---|
75 | #d-i grub-installer/bootdev string /dev/sda
|
---|
76 | # To install to the first device (assuming it is not a USB stick):
|
---|
77 | d-i grub-installer/bootdev string default
|
---|
78 |
|
---|
79 | d-i finish-install/reboot_in_progress note
|
---|
80 |
|
---|
81 | # Custom Commands.
|
---|
82 | # Note! Debian netboot images use busybox, so no bash.
|
---|
83 | # Tell script to use target bash.
|
---|
84 | d-i preseed/late_command string cp /cdrom/vboxpostinstall.sh /target/root/vboxpostinstall.sh \
|
---|
85 | && chmod +x /target/root/vboxpostinstall.sh \
|
---|
86 | && /bin/sh /target/root/vboxpostinstall.sh --need-target-bash --preseed-late-command
|
---|