From 03933b3ab7c886cf5ea5ffee0112d882f2986377 Mon Sep 17 00:00:00 2001 From: Matthew Thode Date: Mon, 1 Jul 2019 13:59:14 -0500 Subject: [PATCH] set default sources conf for buster as it now has a release Change-Id: Ica014a1a267b55e2f29a0c333213e0a4c897108b --- .../debian-minimal/environment.d/10-debian-minimal.bash | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/diskimage_builder/elements/debian-minimal/environment.d/10-debian-minimal.bash b/diskimage_builder/elements/debian-minimal/environment.d/10-debian-minimal.bash index 8fc609c8..accb08c6 100644 --- a/diskimage_builder/elements/debian-minimal/environment.d/10-debian-minimal.bash +++ b/diskimage_builder/elements/debian-minimal/environment.d/10-debian-minimal.bash @@ -16,9 +16,7 @@ updates:deb ${DIB_DISTRIBUTION_MIRROR} ${DIB_RELEASE}-updates ${DIB_DEBIAN_COMPO security:deb http://security.debian.org/ ${DIB_RELEASE}/updates ${DIB_DEBIAN_COMPONENTS_WS} " -# NOTE(ianw): 2019-04 -- remove buster from here when released and it -# has security/backports. -if [ "${DIB_RELEASE}" = "testing" -o "${DIB_RELEASE}" = "unstable" -o "${DIB_RELEASE}" = "buster" ]; then +if [ "${DIB_RELEASE}" = "testing" -o "${DIB_RELEASE}" = "unstable" ]; then DIB_APT_SOURCES_CONF_DEFAULT="default:deb ${DIB_DISTRIBUTION_MIRROR} ${DIB_RELEASE} ${DIB_DEBIAN_COMPONENTS_WS}" fi