45 lines
1.7 KiB
Bash
Executable File
45 lines
1.7 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="bullseye"
|
|
|
|
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
|
|
deb http://deb.debian.org/debian/ bullseye main contrib non-free
|
|
#deb-src http://deb.debian.org/debian/ bullseye main contrib non-free
|
|
|
|
# Security Repo - main contrib non-free
|
|
deb http://security.debian.org/ bullseye-security main contrib non-free
|
|
#deb-src http://security.debian.org/ bullseye-security main contrib non-free
|
|
|
|
# Updates Repo - main contrib non-free
|
|
deb http://deb.debian.org/debian bullseye-updates main contrib non-free
|
|
#deb-src http://deb.debian.org/debian bullseye-updates main
|
|
|
|
# Proposed Updates Repo - main contrib non-free
|
|
#deb http://deb.debian.org/debian/ bullseye-proposed-updates main contrib non-free
|
|
#deb-src http://deb.debian.org/debian/ bullseye-proposed-updates main contrib non-free
|
|
|
|
# bullseye-backports, previously on backports.debian.org
|
|
deb http://deb.debian.org/debian/ bullseye-backports main contrib non-free
|
|
#deb-src http://deb.debian.org/debian/ bullseye-backports main contrib non-free
|
|
|
|
# Testing repo used to get software not in the normal repos
|
|
#deb http://deb.debian.org/debian/ testing main contrib non-free
|
|
|
|
# Unstable repo used to get software not in the normal repos
|
|
#deb http://deb.debian.org/debian/ unstable main contrib non-free
|
|
|
|
EOF
|
|
|
|
exit 0
|