From aea5fad54dc6d553b5dffde430692c22fbd184bb Mon Sep 17 00:00:00 2001 From: thorstenspille Date: Mon, 9 Jan 2023 22:52:45 +0100 Subject: [PATCH] Set sources.list to http --- src/lxc-base.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lxc-base.sh b/src/lxc-base.sh index 5ae63a7..b76340f 100644 --- a/src/lxc-base.sh +++ b/src/lxc-base.sh @@ -26,23 +26,23 @@ locale-gen $LXC_LOCALE if [ "$LXC_TEMPLATE_VERSION" == "debian-11-standard" ] ; then cat << EOF > /etc/apt/sources.list -deb https://debian.inf.tu-dresden.de/debian bullseye main contrib +deb http://debian.inf.tu-dresden.de/debian bullseye main contrib -deb https://debian.inf.tu-dresden.de/debian bullseye-updates main contrib +deb http://debian.inf.tu-dresden.de/debian bullseye-updates main contrib # security updates -deb https://debian.inf.tu-dresden.de/debian-security bullseye-security main contrib +deb http://debian.inf.tu-dresden.de/debian-security bullseye-security main contrib EOF elif [ "$LXC_TEMPLATE_VERSION" == "debian-10-standard" ] ; then cat << EOF > /etc/apt/sources.list -deb https://debian.inf.tu-dresden.de/debian buster main contrib +deb http://debian.inf.tu-dresden.de/debian buster main contrib -deb https://debian.inf.tu-dresden.de/debian buster-updates main contrib +deb http://debian.inf.tu-dresden.de/debian buster-updates main contrib # security updates -deb https://debian.inf.tu-dresden.de/debian-security buster/updates main contrib +deb http://debian.inf.tu-dresden.de/debian-security buster/updates main contrib EOF else echo "LXC Debian Version false. Please check configuration files!" ; exit fi