Some checks failed
💙 Generating a PUBLIC Live ISO. / 💙 Generating a PUBLIC Live ISO. (push) Has been cancelled
🔐 Generating a Private Live ISO TRIXIE. / 🔐 Generating a Private Live ISO TRIXIE. (push) Has been cancelled
🛡️ Retrieve DNSSEC status of coresecret.dev. / 🛡️ Retrieve DNSSEC status of coresecret.dev. (push) Successful in 1m6s
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m47s
Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
57 lines
3.3 KiB
Bash
57 lines
3.3 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: LicenseRef-CNCL-1.1 OR LicenseRef-CCLA-1.1
|
|
# 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
|
|
|
|
###########################################################################################
|
|
# Network setting #
|
|
###########################################################################################
|
|
# netcfg will choose an interface that has link if possible. This makes it # skip
|
|
# displaying a list if there is more than one interface:
|
|
d-i netcfg/choose_interface select auto
|
|
# To pick a particular interface instead:
|
|
# d-i netcfg/choose_interface select eth1
|
|
|
|
# To set a different link detection timeout (default is 3 seconds).
|
|
d-i netcfg/link_wait_timeout string 10
|
|
|
|
# If dhcp server is slow and the installer times out waiting for it, this might be useful.
|
|
d-i netcfg/dhcp_timeout string 60
|
|
d-i netcfg/dhcpv6_timeout string 60
|
|
|
|
###########################################################################################
|
|
# Automatic network configuration is the default. If you prefer to configure the network #
|
|
# manually, uncomment this line and the static network configuration below. #
|
|
###########################################################################################
|
|
# d-i netcfg/disable_autoconfig boolean true
|
|
|
|
###########################################################################################
|
|
# If you want the preconfiguration file to work on systems both with and without a dhcp #
|
|
# server, uncomment these lines and the static network configuration below. #
|
|
###########################################################################################
|
|
d-i netcfg/dhcp_failed note
|
|
d-i netcfg/dhcp_options select Configure network manually
|
|
|
|
###########################################################################################
|
|
# Static network configuration. #
|
|
###########################################################################################
|
|
# d-i netcfg/get_nameservers string 192.168.128.254
|
|
# d-i netcfg/get_ipaddress string 192.168.128.128
|
|
# d-i netcfg/get_netmask string 255.255.255.0
|
|
# d-i netcfg/get_gateway string 192.168.128.254
|
|
# d-i netcfg/confirm_static boolean true
|
|
|
|
###########################################################################################
|
|
# If non-free firmware is needed for the network or other hardware, you can configure the #
|
|
# installer to always try to load it, without prompting. Or change to false to disable #
|
|
# asking. #
|
|
###########################################################################################
|
|
d-i hw-detect/load_firmware boolean true
|
|
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh
|