26 lines
1.0 KiB
Bash
Executable File
26 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Writes the final sources.list file
|
|
#
|
|
|
|
CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g")
|
|
RELEASE="bookworm"
|
|
|
|
cat << EOF > $CHROOT/etc/apt/sources.list
|
|
# See https://wiki.debian.org/SourcesList for more information.
|
|
|
|
deb http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware non-free non-free-firmware-firmware
|
|
deb-src http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware
|
|
|
|
deb http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware
|
|
deb-src http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware
|
|
|
|
deb http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
|
|
deb-src http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
|
|
|
|
deb http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware
|
|
deb-src http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware
|
|
EOF
|
|
|
|
exit 0
|