diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2014-06-25 18:52:34 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:51:53 +0200 |
commit | ce1fce7ce0888f91e9f306dbd09576d3d754da30 (patch) | |
tree | 4c8924381da01a3339e11ecc91c3ca12d7a81727 /roles/common/templates | |
parent | a4b88d46526632705d92b2902d3604907afbcbc9 (diff) |
wibble
Diffstat (limited to 'roles/common/templates')
-rw-r--r-- | roles/common/templates/etc/apt/preferences.j2 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/common/templates/etc/apt/preferences.j2 b/roles/common/templates/etc/apt/preferences.j2 index 448248a..a3a7595 100644 --- a/roles/common/templates/etc/apt/preferences.j2 +++ b/roles/common/templates/etc/apt/preferences.j2 @@ -1,36 +1,36 @@ # {{ ansible_managed }} # Do NOT edit this file directly! # Install updates as soon as they're available Package: * Pin: release a={{ ansible_lsb.codename }}-updates Pin-Priority: 990 {% if 'backports' in group_names -%} -# Automatically install new versions from backports +# Automatically packages from backports (those manually installed) Package: * Pin: release a={{ ansible_lsb.codename }}-backports Pin-Priority: 200 {% endif %} {% if 'non-free' in group_names -%} -# Install automatically new firmwares from backports +# Automatically upgrade non-free firmwares (when manually installed) Package: firmware-linux-nonfree Pin-Priority: 200 {% endif %} {% if ansible_processor[0] | search("^Intel.*") -%} -# Automatically upgrade the microcode +# Automatically upgrade the microcode (when manually installed) Package: intel-microcode iucode-tool Pin-Priority: 200 {% endif %} # Never, ever install things from contrib or non-free unless they have been # whitelisted above Package: * Pin: release c=contrib Pin-Priority: -1 Package: * Pin: release c=non-free Pin-Priority: -1 |