From 4758e189390a1e0113db9c285752221536411229 Mon Sep 17 00:00:00 2001 From: Kevin Olbrich Date: Wed, 7 Jul 2021 20:26:31 +0200 Subject: [PATCH] fix AddDefaultSources for bullseye --- bootstrapvz/common/tasks/apt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrapvz/common/tasks/apt.py b/bootstrapvz/common/tasks/apt.py index d3c5527..bc4850e 100644 --- a/bootstrapvz/common/tasks/apt.py +++ b/bootstrapvz/common/tasks/apt.py @@ -57,7 +57,7 @@ class AddDefaultSources(Task): @classmethod def run(cls, info): - from bootstrapvz.common.releases import sid, wheezy + from bootstrapvz.common.releases import sid, wheezy, bullseye include_src = info.manifest.packages.get('include-source-type', False) components = ' '.join(info.manifest.packages.get('components', ['main'])) info.source_lists.add('main', 'deb {apt_mirror} {system.release} ' + components)