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

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

cat << EOF > $CHROOT/etc/apt/sources.list
### Repositorios Canaima GNU/Linux
### Para más información ingresa a nuestra página web:
### https://canaima.softwarelibre.gob.ve

deb http://repositorio.softwarelibre.gob.ve/canaima $RELEASE main non-free contrib non-free-firmware

EOF

exit 0
