MRTestRepo/calamares/sources-debian/sources-final

39 lines
1.6 KiB
Plaintext
Raw Normal View History

2022-07-19 18:52:03 +00:00
#!/bin/sh
#
# Writes the final sources.list file
#
CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g")
2023-02-11 15:28:42 -01:00
RELEASE="bookworm"
2022-07-19 18:52:03 +00:00
cat << EOF > $CHROOT/etc/apt/sources.list
# This system was installed using PeppermintOS removable media
# (e.g. netinst, live or single CD). The matching "deb cdrom"
# entries were removed at the end of the installation process.
# For information about how to configure apt package sources,
# see the sources.list(5) manual.
# Main Repo - main contrib non-free
2024-01-08 12:57:45 -01:00
deb http://deb.debian.org/debian/ bookworm main contrib non-free non-free-firmware
#deb-src http://deb.debian.org/debian/ bookworm main contrib non-free non-free-firmware
2022-07-19 18:52:03 +00:00
# Security Repo - main contrib non-free
2024-01-08 12:57:45 -01:00
deb http://security.debian.org/ bookworm-security main contrib non-free non-free-firmware
#deb-src http://security.debian.org/ bookworm-security main contrib non-free non-free-firmware
2022-07-19 18:52:03 +00:00
# Updates Repo - main contrib non-free
2024-01-08 12:57:45 -01:00
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 non-free-firmware
2023-02-11 15:28:42 -01:00
# Proposed Updates Repo - main contrib non-free
2024-01-08 12:57:45 -01:00
#deb http://deb.debian.org/debian/ bookworm-proposed-updates main contrib non-free non-free-firmware
#deb-src http://deb.debian.org/debian/ bookworm-proposed-updates main contrib non-free non-free-firmware
2023-02-11 15:28:42 -01:00
# bookworm-backports, previously on backports.debian.org
2024-01-08 12:57:45 -01:00
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
2022-07-19 18:52:03 +00:00
EOF
exit 0