mirror of
https://github.com/YunoHost/cd_build.git
synced 2024-09-03 20:06:24 +02:00
Misc fixes following tests
This commit is contained in:
parent
dd528adc39
commit
30a035c2d7
4 changed files with 40 additions and 16 deletions
|
@ -26,7 +26,9 @@ Or
|
||||||
Install process configuration
|
Install process configuration
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
||||||
- menu.cfg doc: https://wiki.syslinux.org/wiki/index.php?title=Menu
|
- menu.cfg doc:
|
||||||
|
- https://wiki.syslinux.org/wiki/index.php?title=Menu
|
||||||
|
- https://wiki.archlinux.org/index.php/syslinux#Configuration
|
||||||
- Preseed configuration doc: https://www.debian.org/releases/stable/s390x/apb.en.html
|
- Preseed configuration doc: https://www.debian.org/releases/stable/s390x/apb.en.html
|
||||||
|
|
||||||
|
|
||||||
|
|
4
menu.cfg
4
menu.cfg
|
@ -1,7 +1,7 @@
|
||||||
menu hshift 15
|
menu hshift 15
|
||||||
menu width 49
|
menu width 75
|
||||||
|
|
||||||
menu title Installer boot menu
|
menu title YunoHost installation
|
||||||
|
|
||||||
menu background splash.png
|
menu background splash.png
|
||||||
menu color title * #FFFFFFFF *
|
menu color title * #FFFFFFFF *
|
||||||
|
|
|
@ -12,17 +12,28 @@ d-i mirror/http/hostname string ftp.debian.org
|
||||||
d-i mirror/http/directory string /debian
|
d-i mirror/http/directory string /debian
|
||||||
d-i mirror/http/proxy string
|
d-i mirror/http/proxy string
|
||||||
|
|
||||||
### Clock and time zone setup
|
### Localization
|
||||||
d-i clock-setup/utc boolean true
|
|
||||||
d-i clock-setup/ntp boolean true
|
|
||||||
d-i clock-setup/ntp-server string 0.fr.pool.ntp.org
|
|
||||||
|
|
||||||
# Set locale to en_UK but seen to false, such that the question is asked anyway
|
# Set default answers to question, but set them as "false" so that they're asked anyway
|
||||||
d-i debian-installer/locale string en_UK
|
# This prevent for example the default country to be "United States" and having to search
|
||||||
|
# for Europe -> Paris in "Other" ...
|
||||||
|
d-i debian-installer/language string en
|
||||||
|
d-i debian-installer/language seen false
|
||||||
|
|
||||||
|
d-i debian-installer/country string GB
|
||||||
|
d-i debian-installer/country seen false
|
||||||
|
|
||||||
|
d-i debian-installer/locale string en_GB.UTF-8
|
||||||
d-i debian-installer/locale seen false
|
d-i debian-installer/locale seen false
|
||||||
|
|
||||||
d-i time/zone string Europe/Paris
|
d-i time/zone string Europe/Paris
|
||||||
d-i time/zone seen false
|
d-i time/zone seen false
|
||||||
|
d-i clock-setup/utc boolean true
|
||||||
|
d-i clock-setup/ntp boolean true
|
||||||
|
d-i clock-setup/ntp-server string 0.fr.pool.ntp.org
|
||||||
|
|
||||||
|
d-i keyboard-configuration/xkb-keymap select us
|
||||||
|
d-i keyboard-configuration/xkb-keymap seen false
|
||||||
|
|
||||||
### Partitioning
|
### Partitioning
|
||||||
d-i partman-auto/method string lvm
|
d-i partman-auto/method string lvm
|
||||||
|
|
|
@ -13,17 +13,28 @@ d-i mirror/http/directory string /debian
|
||||||
d-i mirror/http/proxy string
|
d-i mirror/http/proxy string
|
||||||
d-i mirror/http/proxy seen false
|
d-i mirror/http/proxy seen false
|
||||||
|
|
||||||
### Clock and time zone setup
|
### Localization
|
||||||
|
|
||||||
|
# Set default answers to question, but set them as "false" so that they're asked anyway
|
||||||
|
# This prevent for example the default country to be "United States" and having to search
|
||||||
|
# for Europe -> Paris in "Other" ...
|
||||||
|
d-i debian-installer/language string en
|
||||||
|
d-i debian-installer/language seen false
|
||||||
|
|
||||||
|
d-i debian-installer/country string GB
|
||||||
|
d-i debian-installer/country seen false
|
||||||
|
|
||||||
|
d-i debian-installer/locale string en_GB.UTF-8
|
||||||
|
d-i debian-installer/locale seen false
|
||||||
|
|
||||||
|
d-i time/zone string Europe/Paris
|
||||||
|
d-i time/zone seen false
|
||||||
d-i clock-setup/utc boolean true
|
d-i clock-setup/utc boolean true
|
||||||
d-i clock-setup/ntp boolean true
|
d-i clock-setup/ntp boolean true
|
||||||
d-i clock-setup/ntp-server string 0.fr.pool.ntp.org
|
d-i clock-setup/ntp-server string 0.fr.pool.ntp.org
|
||||||
|
|
||||||
# Set locale to en_UK but seen to false, such that the question is asked anyway
|
d-i keyboard-configuration/xkb-keymap select us
|
||||||
#d-i debian-installer/locale string en_UK
|
d-i keyboard-configuration/xkb-keymap seen false
|
||||||
#d-i debian-installer/locale seen false
|
|
||||||
|
|
||||||
#d-i time/zone string Europe/Paris
|
|
||||||
#d-i time/zone seen false
|
|
||||||
|
|
||||||
### Partitioning
|
### Partitioning
|
||||||
d-i partman-auto/method string lvm
|
d-i partman-auto/method string lvm
|
||||||
|
|
Loading…
Add table
Reference in a new issue