bundlewrap/bundles/archive/metadata.py
mwiegand 3d334dfcaf wip
2021-06-19 21:54:30 +02:00

20 lines
344 B
Python

defaults = {
'archive': {},
}
@metadata_reactor.provides(
'gocryptfs',
)
def gocryptfs(metadata):
gocryptfs = {}
for path in metadata.get('archive'):
gocryptfs[path] = {
'mountpoint': f'/mnt/gocryptfs{path}',
'reverse': True,
}
return {
'gocryptfs': gocryptfs,
}