36 lines
1.4 KiB
Bash
Executable File
36 lines
1.4 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="daedalus"
|
|
|
|
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 contribnon-free non-free-firmware
|
|
deb http://deb.devuan.org/merged daedalus main contrib non-free non-free-firmware
|
|
#deb-src http://deb.devuan.org/merged daedalus main contrib non-free non-free-firmware
|
|
|
|
# Security Repo - main contribnon-free non-free-firmware
|
|
#deb http://deb.devuan.org/merged daedalus-security main contrib non-free non-free-firmware
|
|
#deb-src http://deb.devuan.org/merged daedalus-security main contrib non-free non-free-firmware
|
|
|
|
# Updates Repo - main contribnon-free non-free-firmware
|
|
#deb http://deb.devuan.org/merged daedalus-updates main contrib non-free non-free-firmware
|
|
#deb-src http://deb.devuan.org/merged daedalus-updates main contrib non-free non-free-firmware
|
|
|
|
# daedalus-backports, previously on backports.debian.org
|
|
#deb http://deb.devuan.org/merged daedalus-backports main contrib non-free non-free-firmware
|
|
#deb-src http://deb.devuan.org/merged daedalus-backports main contrib non-free non-free-firmware
|
|
|
|
|
|
EOF
|
|
|
|
exit 0
|