13 lines
277 B
Plaintext
13 lines
277 B
Plaintext
|
# apt configuration: pinning preferences
|
||
|
# {{ ansible_managed }}
|
||
|
|
||
|
Package: *
|
||
|
Pin: release a={{ ansible_distribution_release }}
|
||
|
Pin-Priority: 999
|
||
|
|
||
|
{% if 'base' in group_names %}
|
||
|
Package: *
|
||
|
Pin: release a={{ ansible_distribution_release }}-backports
|
||
|
Pin-Priority: -1
|
||
|
{% endif %}
|