44 lines
2.2 KiB
Bash
44 lines
2.2 KiB
Bash
# SPDX-Version: 3.0
|
||
# SPDX-CreationInfo: 2025-05-05; WEIDNER, Marc S.; <msw@coresecret.dev>
|
||
# SPDX-ExternalRef: GIT https://git.coresecret.dev/msw/CISS.debian.live.builder.git
|
||
# SPDX-FileContributor: WEIDNER, Marc S.; Centurion Intelligence Consulting Agency
|
||
# SPDX-FileCopyrightText: 2024–2025; WEIDNER, Marc S.; <msw@coresecret.dev>
|
||
# SPDX-FileType: SOURCE
|
||
# SPDX-License-Identifier: EUPL-1.2 OR LicenseRef-CCLA-1.0
|
||
# SPDX-LicenseComment: This file is part of the CISS.debian.installer.secure framework.
|
||
# SPDX-PackageName: CISS.debian.live.builder
|
||
# SPDX-Security-Contact: security@coresecret.eu
|
||
|
||
###########################################################################################
|
||
# Deb packages settings #
|
||
###########################################################################################
|
||
# Please select the protocol to be used for downloading files. If unsure, select "http":
|
||
d-i mirror/protocol string https
|
||
|
||
# Country code or "manual":
|
||
d-i mirror/country string US
|
||
|
||
# Suite to install:
|
||
d-i mirror/suite string stable
|
||
# Suite to use for loading installer components (optional):
|
||
d-i mirror/udeb/suite string stable
|
||
|
||
# Debian archive mirror hostname. Please enter the hostname of the mirror from which
|
||
# Debian will be downloaded. An alternate port can be specified using the standard
|
||
# [hostname]:[port] format:
|
||
d-i mirror/http/hostname string deb.debian.org
|
||
|
||
# Debian archive mirror directory. Please enter the directory in which the mirror of
|
||
# the Debian archive is located:
|
||
d-i mirror/http/directory string /debian/
|
||
|
||
# HTTP proxy information (blank for none). If you need to use a HTTP proxy to access the
|
||
# outside world, enter the proxy information here. Otherwise, leave this blank. The proxy
|
||
# information should be given in the standard form of "http://[[user][:pass]@]host[:port]/".
|
||
d-i mirror/http/proxy string
|
||
|
||
# Debian archive mirror country. The goal is to find a mirror of the Debian archive that
|
||
# is close to you on the network -- be aware that nearby countries, or even your own, may
|
||
# not be the best choice.
|
||
d-i mirror/https/countries select US
|
||
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh |