Alan Orth
9445541f51
Vanilla Ubuntu (and Debian actually) defaults to using the official mirror for security updates rather than country or regional mirrors. Also, for what it's worth, Ubuntu mirrors didn't always sync these security archives. I'd prefer to stay closer to vanilla Ubuntu but also it kinda makes sense to get security updates from the official source than a mirror (in case of delay or errors).
16 lines
863 B
Django/Jinja
16 lines
863 B
Django/Jinja
{% if ansible_distribution == 'Ubuntu' %}
|
|
{% set apt_mirror = apt_mirror | default("ubuntu.mirror.ac.ke") %}
|
|
|
|
deb http://{{ apt_mirror }}/ubuntu/ {{ ansible_distribution_release }} main restricted universe multiverse
|
|
deb http://{{ apt_mirror }}/ubuntu/ {{ ansible_distribution_release }}-updates main restricted universe multiverse
|
|
deb http://security.ubuntu.com/ubuntu/ {{ ansible_distribution_release }}-security main restricted universe multiverse
|
|
|
|
{% else %}
|
|
{% set apt_mirror = apt_mirror | default('deb.debian.org') %}
|
|
deb http://{{ apt_mirror }}/debian/ {{ ansible_distribution_release }} main contrib non-free
|
|
|
|
deb http://security.debian.org/ {{ ansible_distribution_release }}/updates main contrib non-free
|
|
|
|
deb http://{{ apt_mirror }}/debian/ {{ ansible_distribution_release }}-updates main contrib non-free
|
|
{% endif %} {# ansible_distribution #}
|