@@ -13,12 +13,24 @@ d-i debian-installer/locale string en_US
13
13
# Keyboard selection.
14
14
# Disable automatic (interactive) keymap detection.
15
15
d-i console-setup/ask_detect boolean false
16
- # d-i keyboard-configuration/modelcode string pc105
16
+ d-i keyboard-configuration/modelcode string pc105
17
17
d-i keyboard-configuration/layoutcode string us
18
18
# To select a variant of the selected layout (if you leave this out, the
19
19
# basic form of the layout will be used):
20
20
# d-i keyboard-configuration/variantcode string dvorak
21
21
22
+ d-i debconf/language string en_US:en
23
+ d-i debian-installer/country string US
24
+ d-i debian-installer/fallbacklocale string en_US
25
+ d-i debian-installer/language string en_US:en
26
+ d-i debian-installer/locale string en_US
27
+ d-i languagechooser/locale string en
28
+
29
+ # console-setup console-setup/layoutcode select us
30
+ # console-setup console-setup/modelcode select pc105
31
+ # console-setup console-setup/layout select us
32
+ # console-setup console-setup/variant select Germany
33
+
22
34
# ## Network configuration
23
35
# Disable network configuration entirely. This is useful for cdrom
24
36
# installations on non-networked devices where the network questions,
@@ -141,7 +153,7 @@ d-i partman-lvm/confirm boolean true
141
153
142
154
# For LVM partitioning, you can select how much of the volume group to use
143
155
# for logical volumes.
144
- # d-i partman-auto-lvm/guided_size string max
156
+ d-i partman-auto-lvm/guided_size string max
145
157
# d-i partman-auto-lvm/guided_size string 10GB
146
158
# d-i partman-auto-lvm/guided_size string 50%
147
159
@@ -274,18 +286,18 @@ d-i partman/confirm_nooverwrite boolean true
274
286
# d-i passwd/root-password-crypted password [MD5 hash]
275
287
276
288
# To create a normal user account.
277
- # d-i passwd/user-fullname string Ubuntu User
278
- # d-i passwd/username string ubuntu
289
+ d-i passwd/user-fullname string Ubuntu User
290
+ d-i passwd/username string ubuntu
279
291
# Normal user's password, either in clear text
280
- # d-i passwd/user-password password insecure
281
- # d-i passwd/user-password-again password insecure
292
+ d-i passwd/user-password password Passw0rd
293
+ d-i passwd/user-password-again password Passw0rd
282
294
# or encrypted using an MD5 hash.
283
295
# d-i passwd/user-password-crypted password [MD5 hash]
284
296
# Create the first user with the specified UID instead of the default.
285
297
# d-i passwd/user-uid string 1010
286
298
# The installer will warn about weak passwords. If you are sure you know
287
299
# what you're doing and want to override it, uncomment this.
288
- # d-i user-setup/allow-password-weak boolean true
300
+ d-i user-setup/allow-password-weak boolean true
289
301
290
302
# The user account will be added to some standard initial groups. To
291
303
# override that, use this.
@@ -325,29 +337,31 @@ d-i user-setup/encrypt-home boolean false
325
337
# d-i debian-installer/allow_unauthenticated boolean true
326
338
327
339
# ## Package selection
328
- tasksel tasksel/first multiselect ubuntu-desktop
340
+ tasksel tasksel/first multiselect ubuntu-server
329
341
# tasksel tasksel/first multiselect lamp-server, print-server
330
342
# tasksel tasksel/first multiselect kubuntu-desktop
331
343
344
+ d-i pkgsel/install-language-support boolean false
345
+
332
346
# Individual additional packages to install
333
- # d-i pkgsel/include string openssh-server build-essential
347
+ d-i pkgsel/include string openssh-server build-essential
334
348
# Whether to upgrade packages after debootstrap.
335
349
# Allowed values: none, safe-upgrade, full-upgrade
336
350
# d-i pkgsel/upgrade select none
337
351
338
352
# Language pack selection
339
- # d-i pkgsel/language-packs multiselect de, en, zh
353
+ # d-i pkgsel/language-packs multiselect en
340
354
341
355
# Policy for applying updates. May be "none" (no automatic updates),
342
356
# "unattended-upgrades" (install security updates automatically), or
343
357
# "landscape" (manage system with Landscape).
344
- # d-i pkgsel/update-policy select none
358
+ d-i pkgsel/update-policy select none
345
359
346
360
# Some versions of the installer can report back on what software you have
347
361
# installed, and what software you use. The default is not to report back,
348
362
# but sending reports helps the project determine what software is most
349
363
# popular and include it on CDs.
350
- # popularity-contest popularity-contest/participate boolean false
364
+ popularity-contest popularity-contest/participate boolean false
351
365
352
366
# By default, the system's locate database will be updated after the
353
367
# installer has finished installing most packages. This may take a while, so
@@ -468,3 +482,5 @@ xserver-xorg xserver-xorg/config/monitor/mode-list \
468
482
# packages and run commands in the target system.
469
483
# d-i preseed/late_command string apt-install zsh; in-target chsh -s /bin/zsh
470
484
485
+ d-i preseed/late_command string in-target /usr/bin/wget https://raw.github.com/cloudbase/unattended-setup-scripts/master/preseed_post.sh -O /tmp/preseed_post.sh; /bin/bash /tmp/preseed_post.sh
486
+
0 commit comments