Support security for bullseye. See https://wiki.debian.org/NewInBullseye. Closes #964914

This commit is contained in:
Roland Clobus 2021-03-11 12:55:44 +01:00
parent 21eff20ea3
commit 9524705c34
No known key found for this signature in database
GPG Key ID: 62C57C6AA61495BD
1 changed files with 5 additions and 1 deletions

View File

@ -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