2023-10-30 10:43:35 -01:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#
|
|
|
|
# SPDX-FileCopyrightText: 2023 PeppermintOS Team (peppermintosteam@proton.me)
|
|
|
|
|
|
|
|
#This preseed file includes configuration settings for a custom debian-installer iso.
|
|
|
|
|
|
|
|
# You can choose to install non-free and contrib software.
|
|
|
|
d-i apt-setup/non-free boolean true
|
|
|
|
d-i apt-setup/contrib boolean true
|
|
|
|
d-i apt-setup/non-free-firmware boolean true
|
|
|
|
|
|
|
|
# Select which update services to use; define the mirrors to be used.
|
|
|
|
# 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-30 12:53:53 -01:00
|
|
|
d-i apt-setup/security_host string deb.devuan.org/merged
|
2023-10-30 10:43:35 -01:00
|
|
|
|
2023-11-14 12:30:01 -01:00
|
|
|
# Uncomment this to add multiarch configuration for i386
|
|
|
|
d-i apt-setup/multiarch string i386
|
|
|
|
|
2023-10-30 10:43:35 -01:00
|
|
|
# Remove popularity-contest
|
|
|
|
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
|
|
|
|
|