From 85844845646340ef81f56f417a303cce509e9fa5 Mon Sep 17 00:00:00 2001 From: mwiegand Date: Tue, 13 Jul 2021 09:36:35 +0200 Subject: [PATCH] wip --- bundles/apt/items.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bundles/apt/items.py b/bundles/apt/items.py index ed992ef..77d30f6 100644 --- a/bundles/apt/items.py +++ b/bundles/apt/items.py @@ -41,6 +41,8 @@ actions = { }, } +# group sources by apt server hostname + hosts = {} for source_string in node.metadata.get('apt/sources'): @@ -49,6 +51,8 @@ for source_string in node.metadata.get('apt/sources'): .setdefault(source.url.hostname, set())\ .add(source) +# create sources lists and keyfiles + for host, sources in hosts.items(): keyfile = basename(glob(join(repo.path, 'data', 'apt', 'keys', f'{host}.*'))[0]) destination_path = f'/etc/apt/trusted.gpg.d/{keyfile}' @@ -75,6 +79,7 @@ for host, sources in hosts.items(): }, } +# create backport pinnings for package, options in node.metadata.get('apt/packages', {}).items(): pkg_apt[package] = options