#!/bin/sh
#
# Writes the final sources.list file
#

CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g")
RELEASE="trixie"

cat << EOF > $CHROOT/etc/apt/sources.list
# See the sources.list.d directory for debian sources.

EOF

exit 0
