mirror of
https://github.com/YunoHost/cd_build.git
synced 2024-09-03 20:06:24 +02:00
115 lines
4.7 KiB
Text
115 lines
4.7 KiB
Text
### 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
|
|
|
|
### Clock and time zone setup
|
|
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 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 ext3 \
|
|
$primary{ } \
|
|
$bootable{ } \
|
|
method{ format } format{ } \
|
|
use_filesystem{ } filesystem{ ext3 } \
|
|
mountpoint{ /boot } \
|
|
. \
|
|
512 1024 1024 linux-swap \
|
|
$lvmok{ } \
|
|
lv_name{ swap } \
|
|
method{ swap } format{ } \
|
|
. \
|
|
4096 4096 1000000000 ext3 \
|
|
$lvmok{ } \
|
|
lv_name{ root } \
|
|
method{ format } format{ } \
|
|
use_filesystem{ } filesystem{ ext3 } \
|
|
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://repo.yunohost.org/debian/ jessie stable
|
|
d-i apt-setup/local0/key string http://repo.yunohost.org/debian/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, web-server, ssh-server
|
|
d-i pkgsel/include string postfix yunohost yunohost-admin
|
|
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
|