bundles/nginx: initial commit

This commit is contained in:
Franzi 2020-03-14 09:56:19 +00:00
parent bcb9a4602f
commit 9556e423bd
Signed by: kunsi
GPG key ID: 12E3D2136B818350
4 changed files with 51 additions and 0 deletions

3
bundles/nginx/items.py Normal file
View file

@ -0,0 +1,3 @@
pkg_apt = {
'nginx': {},
}

19
bundles/nginx/metadata.py Normal file
View file

@ -0,0 +1,19 @@
@metadata_processor
def nginx_apt_repo(metadata):
return {
'apt': {
'repos': {
'nginx': {
'key': '573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62',
'items': [
'deb http://nginx.org/packages/debian buster nginx',
],
},
},
'unattended-upgrades': {
'origins': {
'nginx.org',
},
},
},
}, DEFAULTS, DONE