summaryrefslogtreecommitdiffstats
path: root/roles/common/templates/etc/apt/sources.list.j2
blob: 8d1b7fd24aa69f8ec2a02e774af10904d3d4876c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# {{ ansible_managed }}
# Do NOT edit this file directly!
# vim: set filetype=debsources :

deb http://deb.debian.org/debian/ {{ ansible_lsb.codename }} main{% if inventory_hostname_short in non_free_packages.keys() or (ansible_processor[1] is search("^(Genuine)?Intel.*") and ansible_virtualization_role == 'guest') %} contrib non-free{% endif %}

deb http://deb.debian.org/debian-security/ {{ ansible_lsb.codename }}/updates main{% if inventory_hostname_short in non_free_packages.keys() or (ansible_processor[1] is search("^(Genuine)?Intel.*") and not ansible_virtualization_role == 'guest') %} contrib non-free{% endif %}

deb http://deb.debian.org/debian/ {{ ansible_lsb.codename }}-updates main

{% if 'backports' in group_names -%}
deb http://deb.debian.org/debian/ {{ ansible_lsb.codename }}-backports main
{% endif %}