feat: move to dedicated repo
This commit is contained in:
commit
4a88a5b28d
54 changed files with 1524 additions and 0 deletions
12
templates/apt/sources.d/Ubuntu.sources.j2
Normal file
12
templates/apt/sources.d/Ubuntu.sources.j2
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
Types: deb
|
||||
URIs: {{ apt_repository_main }}
|
||||
Suites: {{ ansible_distribution_release }} {{ ansible_distribution_release }}-updates {{ ansible_distribution_release }}-backports
|
||||
Components: main restricted {% if apt_enable_universe == True %}universe{% endif %} {% if apt_enable_multiverse == True %}multiverse{% endif %}
|
||||
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
|
||||
|
||||
Types: deb
|
||||
URIs: {{ apt_repository_security }}
|
||||
Suites: {{ ansible_distribution_release }}-security
|
||||
Components: main restricted {% if apt_enable_universe == True %}universe{% endif %} {% if apt_enable_multiverse == True %}multiverse{% endif %}
|
||||
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
|
||||
|
||||
3
templates/apt/sources.d/sources.list.Debian.j2
Normal file
3
templates/apt/sources.d/sources.list.Debian.j2
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
deb http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware
|
||||
deb http://deb.debian.org/debian bookworm-updates main contrib non-free non-free-firmware
|
||||
deb http://security.debian.org bookworm-security main contrib non-free non-free-firmware
|
||||
21
templates/apt/sources.d/sources.list.Ubuntu.j2
Normal file
21
templates/apt/sources.d/sources.list.Ubuntu.j2
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# main + restricted
|
||||
deb [ arch=amd64 ] {{ apt_repository }} {{ ansible_distribution_release }} main restricted
|
||||
deb [ arch=amd64 ] {{ apt_repository }} {{ ansible_distribution_release }}-updates main restricted
|
||||
deb [ arch=amd64 ] {{ apt_repository }} {{ ansible_distribution_release }}-security main restricted
|
||||
deb [ arch=amd64 ] {{ apt_repository }} {{ ansible_distribution_release }}-backports main restricted
|
||||
|
||||
{% if apt_enable_universe == True %}
|
||||
# universe
|
||||
deb [ arch=amd64 ] {{ apt_repository }} {{ ansible_distribution_release }} universe
|
||||
deb [ arch=amd64 ] {{ apt_repository }} {{ ansible_distribution_release }}-updates universe
|
||||
deb [ arch=amd64 ] {{ apt_repository }} {{ ansible_distribution_release }}-security universe
|
||||
deb [ arch=amd64 ] {{ apt_repository }} {{ ansible_distribution_release }}-backports universe
|
||||
|
||||
{% endif %}
|
||||
{% if apt_enable_multiverse == True %}
|
||||
# multiverse
|
||||
deb [ arch=amd64 ] {{ apt_repository }} {{ ansible_distribution_release }} multiverse
|
||||
deb [ arch=amd64 ] {{ apt_repository }} {{ ansible_distribution_release }}-updates multiverse
|
||||
deb [ arch=amd64 ] {{ apt_repository }} {{ ansible_distribution_release }}-security multiverse
|
||||
deb [ arch=amd64 ] {{ apt_repository }} {{ ansible_distribution_release }}-backports multiverse
|
||||
{% endif %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue