This commit is contained in:
mwiegand 2021-06-16 23:56:31 +02:00
parent 694fe3f633
commit 005c640b1f
8 changed files with 29 additions and 2 deletions

5
.envrc Normal file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
python3 -m venv .venv
source ./.venv/bin/activate
unset PS1

1
.gitignore vendored
View file

@ -1 +1,2 @@
.secrets.cfg*
.venv

1
.python-version Normal file
View file

@ -0,0 +1 @@
3.9.0

16
bin/script-template Executable file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env python3
from bundlewrap.repo import Repository
from os.path import realpath, dirname
repo = Repository(dirname(dirname(realpath(__file__))))
domains = set()
for node in repo.nodes:
domains.update(
set(node.metadata.get('opendkim/domains', []))
)
print(domains)
# Do in Metaproc

View file

@ -2,6 +2,6 @@
def steam(metadata):
return {
'steam': {
222860: 'l4d2',
'222860': 'l4d2',
},
}

View file

@ -1 +1,3 @@
{}
{
'metadata': {},
}

View file

@ -3,4 +3,5 @@
'steam',
'l4d2',
],
'metadata': {},
}

View file

@ -1 +1,2 @@
bundlewrap>=4.8.0
PyNaCl