[mirror] Proxmox 7 (bullseye) got released

Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
certbot_on_virtu
Yohann D'ANELLO 2021-07-07 19:31:45 +02:00
parent af0fe7d282
commit bb86beb241
Signed by: _ynerant
GPG Key ID: 3A75C55819C8CF85
2 changed files with 10 additions and 3 deletions

View File

@ -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

View File

@ -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 }}