Initial commit
This commit is contained in:
commit
968d09e362
88 changed files with 2323 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Disable mountmedia, because that can make the cdrom mount fail.
|
||||
# Not sure why there are two conflicting mounting mechanisms in Debian Installer
|
||||
# (mountmedia with /media and cdrom-detect with /cdrom).
|
||||
exit 1
|
||||
28
os/layers/training-installer/includes.installer/preseed.cfg
Normal file
28
os/layers/training-installer/includes.installer/preseed.cfg
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#_preseed_V1
|
||||
|
||||
d-i debian-installer/language string en
|
||||
d-i debian-installer/country string CH
|
||||
d-i debian-installer/locale string en_US.UTF-8
|
||||
|
||||
d-i keyboard-configuration/xkb-keymap select ch
|
||||
|
||||
d-i hw-detect/load_firmware boolean false
|
||||
|
||||
d-i netcfg/enable boolean false
|
||||
d-i netcfg/get_domain string
|
||||
|
||||
d-i passwd/root-login boolean false
|
||||
d-i passwd/user-fullname string Admin
|
||||
d-i passwd/username string superstofl
|
||||
d-i passwd/user-password-crypted password @install_admin_password@
|
||||
|
||||
d-i partman-auto/method string regular
|
||||
d-i partman-auto/init_automatically_partition select some_device
|
||||
d-i partman-auto/choose_recipe select atomic
|
||||
d-i partman/choose_partition select finish
|
||||
|
||||
d-i apt-setup/use_mirror boolean false
|
||||
|
||||
d-i grub-installer/only_debian boolean true
|
||||
|
||||
d-i preseed/late_command string in-target /usr/local/bin/install-config
|
||||
Loading…
Add table
Add a link
Reference in a new issue