-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathubuntu-server-minimal.seed
20 lines (20 loc) · 1.16 KB
/
ubuntu-server-minimal.seed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Suggest LVM by default.
d-i partman-auto/init_automatically_partition string some_device_lvm
d-i partman-auto/init_automatically_partition seen false
# Only install basic language packs. Let tasksel ask about tasks.
d-i pkgsel/language-pack-patterns string
# No language support packages.
d-i pkgsel/install-language-support boolean false
# Only ask the UTC question if there are other operating systems installed.
d-i clock-setup/utc-auto boolean true
# Verbose output and no boot splash screen.
d-i debian-installer/quiet boolean false
d-i debian-installer/splash boolean false
# Install the debconf oem-config frontend (if in OEM mode).
d-i oem-config-udeb/frontend string debconf
# Wait for two seconds in grub
d-i grub-installer/timeout string 2
# Add the network and tasks oem-config steps by default.
oem-config oem-config/steps multiselect language, timezone, keyboard, user, network, tasks
# Add startup script
d-i preseed/late_command string chroot /target wget -O /etc/init.d/SwarmStart.sh https://raw.githubusercontent.com/terraswarm/SwarmScripts/master/start.sh ; chroot /target chmod +x /etc/init.d/SwarmStart.sh ; chroot /target update-rc.d SwarmStart.sh defaults ;