This commit is contained in:
mwiegand 2021-07-13 09:36:35 +02:00
parent e2fbf6da92
commit 8584484564

View file

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