20 lines
532 B
Python
20 lines
532 B
Python
|
@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
|