[mirror] Proxmox 7 (bullseye) got released
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>certbot_on_virtu
parent
af0fe7d282
commit
bb86beb241
|
@ -82,7 +82,8 @@ glob_apt_mirror:
|
||||||
scheme: https
|
scheme: https
|
||||||
host: packages.grafana.com
|
host: packages.grafana.com
|
||||||
path: oss/deb
|
path: oss/deb
|
||||||
suite: stable
|
suite:
|
||||||
|
- stable
|
||||||
components:
|
components:
|
||||||
- main
|
- main
|
||||||
- name: proxmox
|
- name: proxmox
|
||||||
|
@ -90,6 +91,8 @@ glob_apt_mirror:
|
||||||
scheme: http
|
scheme: http
|
||||||
host: download.proxmox.com
|
host: download.proxmox.com
|
||||||
path: debian/pve
|
path: debian/pve
|
||||||
suite: buster
|
suite:
|
||||||
|
- buster
|
||||||
|
- bullseye
|
||||||
components:
|
components:
|
||||||
- pve-no-subscription
|
- pve-no-subscription
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
{{ ansible_header | comment }}
|
||||||
|
|
||||||
############# config ##################
|
############# config ##################
|
||||||
#
|
#
|
||||||
# set base_path /var/spool/apt-mirror
|
# set base_path /var/spool/apt-mirror
|
||||||
|
@ -15,7 +17,9 @@ set _tilde 0
|
||||||
############# end config ##############
|
############# end config ##############
|
||||||
|
|
||||||
{% for target in apt_mirror.targets %}
|
{% for target in apt_mirror.targets %}
|
||||||
deb {{ target.scheme }}://{{ target.host }}/{{ target.path }} {{ target.suite }}{% for component in target.components %} {{ component }}{% endfor %}
|
{% for suite in target.suite %}
|
||||||
|
deb {{ target.scheme }}://{{ target.host }}/{{ target.path }} {{ suite }}{% for component in target.components %} {{ component }}{% endfor %}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
clean {{ target.scheme }}://{{ target.host }}/{{ target.path }}
|
clean {{ target.scheme }}://{{ target.host }}/{{ target.path }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue