wip
This commit is contained in:
parent
e2fbf6da92
commit
8584484564
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue