blob: 5788adec961cca8563b451ec2c3f5c8b6ee18a13 (
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://ftp.se.debian.org/debian/ {{ ansible_lsb.codename }} main{% if 'non-free' in group_names or (ansible_processor[0] | search("^(Genuine)?Intel.*") and not (ansible_virtualization_role == 'guest' and ansible_virtualization_type == 'xen')) %} contrib non-free{% endif %}
deb http://security.debian.org/ {{ ansible_lsb.codename }}/updates main{% if 'non-free' in group_names or (ansible_processor[0] | search("^(Genuine)?Intel.*") and not (ansible_virtualization_role == 'guest' and ansible_virtualization_type == 'xen')) %} contrib non-free{% endif %}
deb http://ftp.se.debian.org/debian/ {{ ansible_lsb.codename }}-updates main
{% if 'backports' in group_names -%}
deb http://ftp.debian.org/debian/ {{ ansible_lsb.codename }}-backports main
{% endif %}
|