You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
753 B
Django/Jinja
12 lines
753 B
Django/Jinja
{% if debian_repo == "sid" %}
|
|
deb https://mirror.yandex.ru/debian sid main{% if debian_repo_nonfree is true %} contrib non-free{% endif %}
|
|
|
|
{% else %}
|
|
deb https://mirror.yandex.ru/debian {{ debian_repo }} main{% if debian_repo_nonfree is true %} contrib non-free{% if debian_repo == "bookworm" %} non-free-firmware{% endif %}{% endif %}
|
|
|
|
deb https://mirror.yandex.ru/debian {{ debian_repo }}-updates main{% if debian_repo_nonfree is true %} contrib non-free{% if debian_repo == "bookworm" %} non-free-firmware{% endif %}{% endif %}
|
|
|
|
deb http://security.debian.org/debian-security/ {{ debian_repo }}-security main{% if debian_repo_nonfree is true %} contrib non-free{% if debian_repo == "bookworm" %} non-free-firmware{% endif %}{% endif %}
|
|
|
|
{% endif %}
|