Alan Orth
9aaad366f5
The Extras repo was discontinued after 14.10 (but the latest we deploy is 14.04). See: https://lists.ubuntu.com/archives/technical-board/2015-January/002063.html Signed-off-by: Alan Orth <alan.orth@gmail.com>
22 lines
1006 B
Django/Jinja
22 lines
1006 B
Django/Jinja
{% set apt_mirror = apt_mirror | default("ubuntu.mirror.ac.ke") %}
|
|
|
|
#############################################################
|
|
################### 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
|
|
|
|
{% if ansible_distribution_version == '14.04' %}
|
|
{# extras repo was discontinued after 14.10, but the latest we deploy is 14.04 #}
|
|
###### Ubuntu Extras Repo
|
|
deb http://extras.ubuntu.com/ubuntu {{ ansible_distribution_release }} main
|
|
{% endif %}
|