kickstart-builder/isos/samples/lvm/seed.default

46 lines
1.4 KiB
Plaintext
Raw Normal View History

2017-05-28 15:41:02 -07:00
# Always install the virtual kernel.
d-i base-installer/kernel/override-image string linux-virtual
2017-05-28 16:38:17 -07:00
2017-05-28 15:41:02 -07:00
# Don't even install the standard task.
tasksel tasksel/skip-tasks string standard
2017-05-28 16:38:17 -07:00
2017-05-28 15:41:02 -07:00
# Only install basic language packs. Let tasksel ask about tasks.
d-i pkgsel/language-pack-patterns string
2017-05-28 16:38:17 -07:00
2017-05-28 15:41:02 -07:00
# No language support packages.
d-i pkgsel/install-language-support boolean false
2017-05-28 16:38:17 -07:00
2017-05-28 15:41:02 -07:00
# Only ask the UTC question if there are other operating systems installed.
d-i clock-setup/utc-auto boolean true
2017-05-28 16:38:17 -07:00
2017-05-28 15:41:02 -07:00
# Use UTC time
d-i time/zone string UTC
2017-05-28 16:38:17 -07:00
2017-05-28 15:41:02 -07:00
# Verbose output and no boot splash screen.
d-i debian-installer/quiet boolean false
d-i debian-installer/splash boolean false
2017-05-28 16:38:17 -07:00
2017-05-28 15:41:02 -07:00
# Install the debconf oem-config frontend (if in OEM mode).
d-i oem-config-udeb/frontend string debconf
2017-05-28 16:38:17 -07:00
2017-05-28 15:41:02 -07:00
# Wait for two seconds in grub
d-i grub-installer/timeout string 2
2017-05-28 16:38:17 -07:00
2017-05-28 15:41:02 -07:00
# Add the network and tasks oem-config steps by default.
oem-config oem-config/steps multiselect language, timezone, keyboard, user, network, tasks
2017-05-28 17:27:05 -07:00
# Overwrite/remove existing LVMs
d-i partman-lvm/confirm_nooverwrite boolean true
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-lvm/confirm boolean true
2017-05-28 15:41:02 -07:00
# Bypass no swap warning
d-i partman-basicfilesystems/no_swap boolean false
2017-05-28 16:38:17 -07:00
2017-05-28 15:41:02 -07:00
# dont wait a long time for dhcp
d-i netcfg/dhcp_timeout string 8
d-i netcfg/dhcpv6_timeout string 8
2017-05-28 16:38:17 -07:00
2017-05-28 15:41:02 -07:00
# Allow weak passwords in installer
d-i user-setup/allow-password-weak boolean true