bundles/nginx: initial commit
This commit is contained in:
parent
bcb9a4602f
commit
9556e423bd
4 changed files with 51 additions and 0 deletions
3
bundles/nginx/items.py
Normal file
3
bundles/nginx/items.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
pkg_apt = {
|
||||
'nginx': {},
|
||||
}
|
19
bundles/nginx/metadata.py
Normal file
19
bundles/nginx/metadata.py
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue