mirror of
https://github.com/YunoHost/cd_build.git
synced 2024-09-03 20:06:24 +02:00
Remove superflous advanced profile + choose locale en_US already (stupid iso only suggest different english locales, not different actual languages)
This commit is contained in:
parent
ec8c46322e
commit
fd7e2bb584
7 changed files with 8 additions and 208 deletions
|
@ -1 +0,0 @@
|
||||||
Y U NO HOST full automatic webservices installer
|
|
|
@ -1,3 +0,0 @@
|
||||||
less
|
|
||||||
simple-cdd-profiles
|
|
||||||
firmware-linux-nonfree
|
|
|
@ -1,119 +0,0 @@
|
||||||
### Network configuration
|
|
||||||
d-i netcfg/choose_interface select auto
|
|
||||||
d-i netcfg/dhcp_failed note
|
|
||||||
d-i netcfg/dhcp_options select Configure network manually
|
|
||||||
d-i netcfg/disable_dhcp boolean false
|
|
||||||
d-i netcfg/get_hostname string yunohost
|
|
||||||
d-i netcfg/get_domain string yunohost.org
|
|
||||||
d-i netcfg/get_domain seen true
|
|
||||||
|
|
||||||
### Mirror settings
|
|
||||||
d-i mirror/country string manual
|
|
||||||
d-i mirror/http/hostname string ftp.debian.org
|
|
||||||
d-i mirror/http/directory string /debian
|
|
||||||
d-i mirror/http/proxy string
|
|
||||||
d-i mirror/http/proxy seen false
|
|
||||||
|
|
||||||
### Clock and time zone setup
|
|
||||||
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
|
|
||||||
|
|
||||||
### Partitioning
|
|
||||||
d-i partman-auto/method string lvm
|
|
||||||
d-i partman-lvm/device_remove_lvm boolean true
|
|
||||||
d-i partman-md/device_remove_md boolean true
|
|
||||||
d-i partman-auto/choose_recipe select atomic
|
|
||||||
d-i partman-lvm/device_remove_lvm_span boolean true
|
|
||||||
d-i partman-auto/purge_lvm_from_device boolean true
|
|
||||||
d-i partman-auto-lvm/new_vg_name string system
|
|
||||||
d-i partman-lvm/confirm boolean true
|
|
||||||
d-i partman-auto-lvm/guided_size string max
|
|
||||||
d-i partman-auto/expert_recipe string \
|
|
||||||
boot-root :: \
|
|
||||||
128 256 256 ext4 \
|
|
||||||
$primary{ } \
|
|
||||||
$bootable{ } \
|
|
||||||
method{ format } format{ } \
|
|
||||||
use_filesystem{ } filesystem{ ext4 } \
|
|
||||||
mountpoint{ /boot } \
|
|
||||||
. \
|
|
||||||
512 1024 1024 linux-swap \
|
|
||||||
$lvmok{ } \
|
|
||||||
lv_name{ swap } \
|
|
||||||
method{ swap } format{ } \
|
|
||||||
. \
|
|
||||||
4096 4096 1000000000 ext4 \
|
|
||||||
$lvmok{ } \
|
|
||||||
lv_name{ root } \
|
|
||||||
method{ format } format{ } \
|
|
||||||
use_filesystem{ } filesystem{ ext4 } \
|
|
||||||
mountpoint{ / } \
|
|
||||||
.
|
|
||||||
|
|
||||||
d-i partman/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
|
|
||||||
d-i partman-lvm/confirm_nooverwrite boolean true
|
|
||||||
|
|
||||||
### Account setup
|
|
||||||
d-i passwd/root-password-crypted password $1$6xBdkGvE$8nLCNRxwABespdFJniEiX0
|
|
||||||
d-i passwd/make-user boolean false
|
|
||||||
|
|
||||||
### Base system installation
|
|
||||||
d-i apt-setup/non-free boolean false
|
|
||||||
d-i apt-setup/contrib boolean true
|
|
||||||
|
|
||||||
d-i apt-setup/services-select multiselect security, updates
|
|
||||||
d-i apt-setup/security_host string security.debian.org
|
|
||||||
|
|
||||||
d-i apt-setup/local0/repository string \
|
|
||||||
http://forge.yunohost.org/debian/ stretch stable
|
|
||||||
d-i apt-setup/local0/key string http://forge.yunohost.org/yunohost.asc
|
|
||||||
d-i apt-setup/local0/comment string YunoHost repository
|
|
||||||
#d-i debian-installer/allow_unauthenticated string true
|
|
||||||
|
|
||||||
### Package selection
|
|
||||||
tasksel tasksel/first multiselect standard, ssh-server
|
|
||||||
# Keep postfix in here, otherwise exim4 might get installed and create a weird
|
|
||||||
# conflict...
|
|
||||||
d-i pkgsel/include string postfix yunohost
|
|
||||||
d-i pkgsel/upgrade select none
|
|
||||||
|
|
||||||
### Deactivate poll on popular packages
|
|
||||||
popularity-contest popularity-contest/participate boolean false
|
|
||||||
debconf debconf/frontend select Noninteractive
|
|
||||||
|
|
||||||
### Boot loader installation
|
|
||||||
d-i grub-installer/only_debian boolean true
|
|
||||||
d-i grub-installer/with_other_os boolean true
|
|
||||||
|
|
||||||
### Finishing up the installation
|
|
||||||
d-i finish-install/reboot_in_progress note
|
|
||||||
d-i cdrom-detect/eject boolean true
|
|
||||||
d-i debian-installer/exit/reboot boolean true
|
|
||||||
|
|
||||||
### YunoHost Debconf (same than in yunohost/install_script)
|
|
||||||
slapd slapd/password1 password yunohost
|
|
||||||
slapd slapd/password2 password yunohost
|
|
||||||
slapd slapd/domain string yunohost.org
|
|
||||||
slapd shared/organization string yunohost.org
|
|
||||||
slapd slapd/allow_ldap_v2 boolean false
|
|
||||||
slapd slapd/invalid_config boolean true
|
|
||||||
slapd slapd/backend select MDB
|
|
||||||
postfix postfix/main_mailer_type select Internet Site
|
|
||||||
postfix postfix/mailname string /etc/mailname
|
|
||||||
mysql-server-5.5 mysql-server/root_password password yunohost
|
|
||||||
mysql-server-5.5 mysql-server/root_password_again password yunohost
|
|
||||||
mariadb-server-10.0 mysql-server/root_password password yunohost
|
|
||||||
mariadb-server-10.0 mysql-server/root_password_again password yunohost
|
|
||||||
nslcd nslcd/ldap-bindpw password
|
|
||||||
nslc nslcd/ldap-starttls boolean false
|
|
||||||
nslcd nslcd/ldap-reqcert select
|
|
||||||
nslcd nslcd/ldap-uris string ldap://localhost/
|
|
||||||
nslcd nslcd/ldap-binddn string
|
|
||||||
nslcd nslcd/ldap-base string dc=yunohost,dc=org
|
|
||||||
libnss-ldapd libnss-ldapd/nsswitch multiselect group, passwd, shadow
|
|
||||||
postsrsd postsrsd/domain string yunohost.org
|
|
||||||
apt-cdrom-setup apt-setup/cdrom/set-next boolean false
|
|
|
@ -31,11 +31,11 @@ d-i partman-lvm/confirm boolean true
|
||||||
d-i partman-auto-lvm/guided_size string max
|
d-i partman-auto-lvm/guided_size string max
|
||||||
d-i partman-auto/expert_recipe string \
|
d-i partman-auto/expert_recipe string \
|
||||||
boot-root :: \
|
boot-root :: \
|
||||||
128 256 256 ext3 \
|
128 256 256 ext4 \
|
||||||
$primary{ } \
|
$primary{ } \
|
||||||
$bootable{ } \
|
$bootable{ } \
|
||||||
method{ format } format{ } \
|
method{ format } format{ } \
|
||||||
use_filesystem{ } filesystem{ ext3 } \
|
use_filesystem{ } filesystem{ ext4 } \
|
||||||
mountpoint{ /boot } \
|
mountpoint{ /boot } \
|
||||||
. \
|
. \
|
||||||
512 1024 1024 linux-swap \
|
512 1024 1024 linux-swap \
|
||||||
|
@ -43,11 +43,11 @@ d-i partman-auto/expert_recipe string \
|
||||||
lv_name{ swap } \
|
lv_name{ swap } \
|
||||||
method{ swap } format{ } \
|
method{ swap } format{ } \
|
||||||
. \
|
. \
|
||||||
4096 4096 1000000000 ext3 \
|
4096 4096 1000000000 ext4 \
|
||||||
$lvmok{ } \
|
$lvmok{ } \
|
||||||
lv_name{ root } \
|
lv_name{ root } \
|
||||||
method{ format } format{ } \
|
method{ format } format{ } \
|
||||||
use_filesystem{ } filesystem{ ext3 } \
|
use_filesystem{ } filesystem{ ext4 } \
|
||||||
mountpoint{ / } \
|
mountpoint{ / } \
|
||||||
.
|
.
|
||||||
|
|
||||||
|
|
|
@ -1,79 +0,0 @@
|
||||||
d-i netcfg/choose_interface select auto
|
|
||||||
d-i netcfg/dhcp_failed note
|
|
||||||
d-i netcfg/dhcp_options select Configure network manually
|
|
||||||
d-i netcfg/disable_dhcp boolean false
|
|
||||||
d-i netcfg/get_hostname string yunohost
|
|
||||||
d-i netcfg/get_domain string yunohost.org
|
|
||||||
d-i netcfg/get_domain seen true
|
|
||||||
d-i mirror/country string manual
|
|
||||||
d-i mirror/http/hostname string ftp.debian.org
|
|
||||||
d-i mirror/http/directory string /debian
|
|
||||||
d-i mirror/http/proxy string
|
|
||||||
d-i clock-setup/utc boolean true
|
|
||||||
d-i time/zone string Europe/Paris
|
|
||||||
d-i clock-setup/ntp boolean true
|
|
||||||
d-i clock-setup/ntp-server string 3.fr.pool.ntp.org
|
|
||||||
d-i partman-auto/method string regular
|
|
||||||
d-i partman-auto/choose_recipe select multi
|
|
||||||
#d-i partman-auto/expert_recipe string \
|
|
||||||
# condpart :: \
|
|
||||||
# 300 4000 7000 ext3 \
|
|
||||||
# $primary{ } $bootable{ } \
|
|
||||||
# method{ format } format{ } \
|
|
||||||
# use_filesystem{ } filesystem{ ext3 } \
|
|
||||||
# mountpoint{ / } \
|
|
||||||
# . \
|
|
||||||
# 64 512 300% linux-swap \
|
|
||||||
# method{ swap } format{ } \
|
|
||||||
# . \
|
|
||||||
# 100 10000 1000000000 ext3 \
|
|
||||||
# method{ keep } format{ } \
|
|
||||||
# use_filesystem{ } filesystem{ ext3 } \
|
|
||||||
# mountpoint{ /var } \
|
|
||||||
# .
|
|
||||||
d-i partman/confirm_write_new_label boolean true
|
|
||||||
d-i partman/choose_partition select finish
|
|
||||||
d-i partman/confirm boolean false
|
|
||||||
d-i partman/confirm_nooverwrite boolean true
|
|
||||||
d-i passwd/root-password-crypted password $1$6xBdkGvE$8nLCNRxwABespdFJniEiX0
|
|
||||||
d-i passwd/make-user boolean fasle
|
|
||||||
d-i apt-setup/non-free boolean true
|
|
||||||
d-i apt-setup/contrib boolean true
|
|
||||||
d-i apt-setup/local0/repository string \
|
|
||||||
http://forge.yunohost.org/ stretch stable
|
|
||||||
d-i apt-setup/local1/repository string \
|
|
||||||
http://forge.yunohost.org/ stretch stable
|
|
||||||
d-i apt-setup/local0/key string http://forge.yunohost.org/yunohost.asc
|
|
||||||
d-i apt-setup/local1/key string http://forge.yunohost.org/yunohost.asc
|
|
||||||
d-i debian-installer/allow_unauthenticated string true
|
|
||||||
tasksel tasksel/first multiselect standard, ssh-server
|
|
||||||
# Keep postfix in here, otherwise exim4 might get installed and create a weird
|
|
||||||
# conflict...
|
|
||||||
d-i pkgsel/include string postfix yunohost
|
|
||||||
popularity-contest popularity-contest/participate boolean false
|
|
||||||
debconf debconf/frontend select Noninteractive
|
|
||||||
d-i grub-installer/only_debian boolean true
|
|
||||||
d-i grub-installer/with_other_os boolean true
|
|
||||||
d-i finish-install/reboot_in_progress note
|
|
||||||
d-i cdrom-detect/eject boolean true
|
|
||||||
d-i debian-installer/exit/reboot boolean true
|
|
||||||
slapd slapd/domain string yunohost.org
|
|
||||||
slapd shared/organization string yunohost
|
|
||||||
slapd slapd/password1 password yunohost
|
|
||||||
slapd slapd/password2 password yunohost
|
|
||||||
postfix postfix/main_mailer_type select Internet Site
|
|
||||||
postfix postfix/mailname string /etc/mailname
|
|
||||||
mysql-server-5.5 mysql-server/root_password password yunohost
|
|
||||||
mysql-server-5.5 mysql-server/root_password_again password yunohost
|
|
||||||
samba-common samba-common/workgroup string WORKGROUP
|
|
||||||
samba-common samba-common/workgroup boolean true
|
|
||||||
nslcd nslcd/ldap-bindpw password
|
|
||||||
nslcd nslcd/ldap-starttls boolean false
|
|
||||||
nslcd nslcd/ldap-reqcert select
|
|
||||||
nslcd nslcd/ldap-uris string ldap://localhost/
|
|
||||||
nslcd nslcd/ldap-binddn string
|
|
||||||
nslcd nslcd/ldap-base string dc=yunohost,dc=org
|
|
||||||
proftpd-basic shared/proftpd/inetd_or_standalone select standalone
|
|
||||||
iptables-persistent iptables-persistent/autosave_v6 boolean false
|
|
||||||
iptables-persistent iptables-persistent/autosave_v4 boolean false
|
|
||||||
libnss-ldapd libnss-ldapd/nsswitch multiselect group, passwd, shadow
|
|
|
@ -1,8 +1,9 @@
|
||||||
server="ftp2.fr.debian.org"
|
server="ftp2.fr.debian.org"
|
||||||
debian_mirror="http://$server/debian/"
|
debian_mirror="http://$server/debian/"
|
||||||
wget_debian_mirror="ftp://$server/debian"
|
wget_debian_mirror="ftp://$server/debian"
|
||||||
profiles="default advanced"
|
profiles="default"
|
||||||
mirror_components="main contrib non-free"
|
mirror_components="main contrib non-free"
|
||||||
|
locale=en_US
|
||||||
export ARCH="amd64"
|
export ARCH="amd64"
|
||||||
export DISKINFO="YunoHost $(date --utc +%Y%m%d)"
|
export DISKINFO="YunoHost $(date --utc +%Y%m%d)"
|
||||||
export OMIT_MANUAL=1
|
export OMIT_MANUAL=1
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
server="ftp2.fr.debian.org"
|
server="ftp2.fr.debian.org"
|
||||||
debian_mirror="http://$server/debian/"
|
debian_mirror="http://$server/debian/"
|
||||||
wget_debian_mirror="ftp://$server/debian"
|
wget_debian_mirror="ftp://$server/debian"
|
||||||
profiles="default advanced"
|
profiles="default"
|
||||||
mirror_components="main contrib non-free"
|
mirror_components="main contrib non-free"
|
||||||
|
locale=en_US
|
||||||
export ARCH="i386"
|
export ARCH="i386"
|
||||||
export DISKINFO="YunoHost $(date --utc +%Y%m%d)"
|
export DISKINFO="YunoHost $(date --utc +%Y%m%d)"
|
||||||
export OMIT_MANUAL=1
|
export OMIT_MANUAL=1
|
||||||
|
|
Loading…
Add table
Reference in a new issue