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

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

cat << EOF > $CHROOT/etc/apt/sources.list
deb [signed-by=/usr/share/keyrings/seecker-archive-keyring.gpg] http://seecker.no-ip.org/repository seecker main
EOF


exit 0
