This commit is contained in:
mwiegand 2021-06-21 16:44:04 +02:00
parent bd5fc9e92f
commit 9a99c9fa1b
3 changed files with 18 additions and 12 deletions

View file

@ -10,6 +10,12 @@ directories = {
'action:apt_update', 'action:apt_update',
}, },
}, },
'/etc/apt/trusted.gpg.d': {
'purge': True,
'triggers': {
'action:apt_update',
},
},
} }
files = { files = {
@ -38,18 +44,11 @@ for source_string in node.metadata.get('apt/sources'):
.add(source) .add(source)
for host, sources in hosts.items(): for host, sources in hosts.items():
matches = glob(join(repo.path, 'data', 'apt', 'keys', f'{host}.*')) keyfile = basename(glob(join(repo.path, 'data', 'apt', 'keys', f'{host}.*'))[0])
if matches: destination_path = f'/etc/apt/trusted.gpg.d/{keyfile}'
path = f'/etc/apt/trusted.gpg.d/{basename(matches[0])}'
files[path] = { for source in sources:
'source': join(repo.path, 'data', 'apt', 'keys', basename(matches[0])), source.options['signed-by'] = [destination_path]
'content_type': 'binary',
'triggers': {
'action:apt_update',
},
}
for source in sources:
source.options['signed-by'] = [path]
files[f'/etc/apt/sources.list.d/{host}.list'] = { files[f'/etc/apt/sources.list.d/{host}.list'] = {
'content': '\n'.join( 'content': '\n'.join(
@ -62,6 +61,13 @@ for host, sources in hosts.items():
}, },
} }
files[destination_path] = {
'source': join(repo.path, 'data', 'apt', 'keys', keyfile),
'content_type': 'binary',
'triggers': {
'action:apt_update',
},
}
for package, options in node.metadata.get('apt/packages', {}).items(): for package, options in node.metadata.get('apt/packages', {}).items():

Binary file not shown.

Binary file not shown.