Missing preseed_swap.cfg in git repo.
This commit is contained in:
parent
e9ac26da84
commit
1cba94db3b
1 changed files with 57 additions and 0 deletions
57
preseed_swap.cfg
Normal file
57
preseed_swap.cfg
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
d-i debian-installer/locale string fr_FR
|
||||||
|
d-i keyboard-configuration/xkb-keymap select fr(latin9)
|
||||||
|
d-i netcfg/choose_interface select eth0
|
||||||
|
d-i netcfg/get_hostname string unassigned-hostname
|
||||||
|
d-i netcfg/get_domain string unassigned-domain
|
||||||
|
|
||||||
|
#
|
||||||
|
# MIRROR
|
||||||
|
#
|
||||||
|
d-i mirror/country string manual
|
||||||
|
d-i mirror/http/hostname string http.fr.debian.org
|
||||||
|
d-i mirror/http/directory string /debian
|
||||||
|
d-i mirror/http/proxy string
|
||||||
|
|
||||||
|
#
|
||||||
|
# USER ACCOUNT
|
||||||
|
#
|
||||||
|
d-i passwd/root-login boolean true
|
||||||
|
d-i passwd/make-user boolean false
|
||||||
|
#Create the root password...
|
||||||
|
d-i passwd/root-password password test
|
||||||
|
d-i passwd/root-password-again password test
|
||||||
|
|
||||||
|
#
|
||||||
|
# CLOCK
|
||||||
|
#
|
||||||
|
d-i clock-setup/utc boolean true
|
||||||
|
d-i time/zone string Europe/Paris
|
||||||
|
d-i clock-setup/ntp boolean true
|
||||||
|
|
||||||
|
#
|
||||||
|
# PARTITIONS
|
||||||
|
#
|
||||||
|
d-i partman-auto/disk string /dev/sda
|
||||||
|
d-i partman-auto/method string regular
|
||||||
|
d-i partman-auto/purge_lvm_from_device boolean true
|
||||||
|
d-i partman-lvm/device_remove_lvm boolean true
|
||||||
|
d-i partman-md/device_remove_md boolean true
|
||||||
|
d-i partman-lvm/confirm boolean true
|
||||||
|
d-i partman-auto/choose_recipe select atomic
|
||||||
|
d-i partman-auto/expert_recipe_file string /hd-media/partman_swap
|
||||||
|
d-i partman-partitioning/confirm_write_new_label boolean true
|
||||||
|
d-i partman/choose_partition select finish
|
||||||
|
d-i partman/confirm boolean true
|
||||||
|
d-i partman/confirm_nooverwrite boolean true
|
||||||
|
|
||||||
|
#
|
||||||
|
# PACKAGES
|
||||||
|
#
|
||||||
|
tasksel tasksel/first multiselect none
|
||||||
|
|
||||||
|
#
|
||||||
|
# GRUB
|
||||||
|
#
|
||||||
|
d-i grub-installer/only_debian boolean true
|
||||||
|
d-i grub-installer/with_other_os boolean true
|
||||||
|
|
Reference in a new issue