From 9524705c34811c56f35ea005791157e867845324 Mon Sep 17 00:00:00 2001 From: Roland Clobus Date: Thu, 11 Mar 2021 12:55:44 +0100 Subject: Support security for bullseye. See https://wiki.debian.org/NewInBullseye. Closes #964914 --- functions/sourcelist.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/functions/sourcelist.sh b/functions/sourcelist.sh index def868114..dd9977878 100755 --- a/functions/sourcelist.sh +++ b/functions/sourcelist.sh @@ -83,10 +83,14 @@ Create_apt_sources_list () # do nothing ;; - *) + buster|jessie|stretch) echo "deb ${PARENT_MIRROR_SECURITY} ${PARENT_DISTRIBUTION}/updates ${LB_PARENT_ARCHIVE_AREAS}" >> "${PARENT_LIST_FILE}" echo "deb-src ${PARENT_MIRROR_SECURITY} ${PARENT_DISTRIBUTION}/updates ${LB_PARENT_ARCHIVE_AREAS}" >> "${PARENT_LIST_FILE}" ;; + *) + echo "deb ${PARENT_MIRROR_SECURITY} ${PARENT_DISTRIBUTION}-security/updates ${LB_PARENT_ARCHIVE_AREAS}" >> "${PARENT_LIST_FILE}" + echo "deb-src ${PARENT_MIRROR_SECURITY} ${PARENT_DISTRIBUTION}-security/updates ${LB_PARENT_ARCHIVE_AREAS}" >> "${PARENT_LIST_FILE}" + ;; esac if [ "${LB_DERIVATIVE}" = "true" ]; then -- cgit v1.2.3