This commit is contained in:
mwiegand 2021-06-26 00:34:41 +02:00
parent 856e74f1e4
commit e3f3fd1a81

View file

@ -16,6 +16,12 @@ directories = {
'action:apt_update',
},
},
'/etc/apt/preferences.d': {
'purge': True,
'triggers': {
'action:apt_update',
},
},
}
files = {
@ -82,4 +88,10 @@ for package, options in node.metadata.get('apt/packages', {}).items():
f"Pin: release a={node.metadata.get('os_release')}-backports",
f"Pin-Priority: 900",
]),
'needed_by': [
f'pkg_apt:{package}',
],
'triggers': {
'action:apt_update',
},
}