2023-11-16 12:32:50 -01:00
|
|
|
################################################################################
|
|
|
|
# Title: Preseed.cfg
|
|
|
|
# Description: This preseed file includes configuration settings for a custom debian-installer iso.
|
|
|
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
|
|
|
# Date: Outubro 29, 2023
|
|
|
|
# License: GPL-3.0-or-later
|
|
|
|
################################################################################
|
2023-10-29 15:43:55 -01:00
|
|
|
|
2023-11-16 12:32:50 -01:00
|
|
|
### You can choose to install non-free and contrib software.
|
2023-10-29 15:43:55 -01:00
|
|
|
d-i apt-setup/non-free boolean true
|
|
|
|
d-i apt-setup/contrib boolean true
|
|
|
|
d-i apt-setup/non-free-firmware boolean true
|
|
|
|
|
2023-11-16 12:32:50 -01:00
|
|
|
### Select which update services to use; define the mirrors to be used.
|
2023-10-29 15:43:55 -01:00
|
|
|
# Values shown below are the normal defaults.
|
2023-11-14 12:30:01 -01:00
|
|
|
d-i apt-setup/services-select multiselect security, updates, backports
|
2023-10-29 15:43:55 -01:00
|
|
|
d-i apt-setup/security_host string security.debian.org
|
|
|
|
|
2023-11-16 12:32:50 -01:00
|
|
|
### Uncomment this to add multiarch configuration for i386
|
2023-11-14 12:30:01 -01:00
|
|
|
d-i apt-setup/multiarch string i386
|
|
|
|
|
2023-11-16 12:32:50 -01:00
|
|
|
### Remove popularity-contest
|
2023-10-29 15:43:55 -01:00
|
|
|
popularity-contest popularity-contest/participate boolean false
|
|
|
|
|
|
|
|
### Account setup
|
|
|
|
# Skip creation of a root account (normal user account will be able to
|
|
|
|
# use sudo).
|
|
|
|
d-i passwd/root-login boolean false
|
|
|
|
|
2023-11-16 12:32:50 -01:00
|
|
|
### Keep /etc/default/grub file
|
|
|
|
d-i grub-pc/default string keep
|
|
|
|
|