6 lines
274 B
Plaintext
6 lines
274 B
Plaintext
|
{% if ansible_distribution == 'Ubuntu' %}
|
||
|
deb http://security.ubuntu.com/ubuntu {{ ansible_distribution_release }}-security main universe
|
||
|
{% elif ansible_distribution == 'Debian' %}
|
||
|
deb http://security.debian.org/ {{ ansible_distribution_release }}/updates main
|
||
|
{% endif %}
|