Alan Orth
33f22b32a4
The system's apt configuration is using restricted and multiverse so the security sources list should as well.
6 lines
296 B
Django/Jinja
6 lines
296 B
Django/Jinja
{% if ansible_distribution == 'Ubuntu' %}
|
|
deb http://security.ubuntu.com/ubuntu {{ ansible_distribution_release }}-security main restricted universe multiverse
|
|
{% elif ansible_distribution == 'Debian' %}
|
|
deb http://security.debian.org/ {{ ansible_distribution_release }}/updates main
|
|
{% endif %}
|