2015-07-24 19:54:16 +03:00
|
|
|
{% if ansible_distribution == 'Ubuntu' %}
|
2015-06-04 21:57:11 +03:00
|
|
|
{% set apt_mirror = apt_mirror | default("ubuntu.mirror.ac.ke") %}
|
|
|
|
|
2014-08-17 00:35:57 +03:00
|
|
|
#############################################################
|
|
|
|
################### OFFICIAL UBUNTU REPOS ###################
|
|
|
|
#############################################################
|
|
|
|
|
|
|
|
###### Ubuntu Main Repos
|
|
|
|
deb http://{{ apt_mirror }}/ubuntu/ {{ ansible_distribution_release }} main restricted universe multiverse
|
|
|
|
|
|
|
|
###### Ubuntu Update Repos
|
|
|
|
deb http://{{ apt_mirror }}/ubuntu/ {{ ansible_distribution_release }}-security main restricted universe multiverse
|
|
|
|
deb http://{{ apt_mirror }}/ubuntu/ {{ ansible_distribution_release }}-updates main restricted universe multiverse
|
|
|
|
|
|
|
|
###### Ubuntu Partner Repo
|
|
|
|
deb http://archive.canonical.com/ubuntu {{ ansible_distribution_release }} partner
|
|
|
|
|
2016-12-20 15:04:47 +02:00
|
|
|
{% if ansible_distribution_version | version_compare('14.04', '==') %}
|
2015-06-01 14:01:56 +03:00
|
|
|
{# extras repo was discontinued after 14.10, but the latest we deploy is 14.04 #}
|
2014-08-17 00:35:57 +03:00
|
|
|
###### Ubuntu Extras Repo
|
|
|
|
deb http://extras.ubuntu.com/ubuntu {{ ansible_distribution_release }} main
|
2015-06-01 14:01:56 +03:00
|
|
|
{% endif %}
|
2015-07-24 19:54:16 +03:00
|
|
|
{% else %}
|
2015-11-30 09:34:16 +02:00
|
|
|
{% set apt_mirror = apt_mirror | default('httpredir.debian.org') %}
|
2015-07-24 19:54:16 +03:00
|
|
|
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
|
|
|
|
|
2015-08-22 22:27:09 +03:00
|
|
|
deb http://{{ apt_mirror }}/debian/ {{ ansible_distribution_release }}-updates main contrib non-free
|
2015-07-24 19:54:16 +03:00
|
|
|
{% endif %} {# ansible_distribution #}
|