summaryrefslogtreecommitdiffstats
path: root/roles/common/templates/etc/apt/sources.list.j2
blob: c8f5dfc6b9d2f7feff836fcf70adeea2fac0bb6d (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 https://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 not ansible_virtualization_role == 'guest') %} contrib non-free{% endif %}

deb https://deb.debian.org/debian-security {{ ansible_lsb.codename }}{% if ansible_lsb.major_release | int < 11 %}/updates{% else %}-security{% endif %} 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 https://deb.debian.org/debian {{ ansible_lsb.codename }}-updates main

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