Alan Orth
f3403cc79a
I haven't used this in years, and it looks to only be proprietary things like Adobe, Skype, etc.
23 lines
1.1 KiB
Django/Jinja
23 lines
1.1 KiB
Django/Jinja
{% if ansible_distribution == 'Ubuntu' %}
|
|
{% 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
|
|
|
|
{% 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 #}
|