Skip to content
Snippets Groups Projects
Verified Commit bb86beb2 authored by ynerant's avatar ynerant
Browse files

[mirror] Proxmox 7 (bullseye) got released


Signed-off-by: ynerant's avatarYohann D'ANELLO <ynerant@crans.org>
parent af0fe7d2
No related branches found
No related tags found
1 merge request!273Proxmox 7
......@@ -82,7 +82,8 @@ glob_apt_mirror:
scheme: https
host: packages.grafana.com
path: oss/deb
suite: stable
suite:
- stable
components:
- main
- name: proxmox
......@@ -90,6 +91,8 @@ glob_apt_mirror:
scheme: http
host: download.proxmox.com
path: debian/pve
suite: buster
suite:
- buster
- bullseye
components:
- pve-no-subscription
{{ ansible_header | comment }}
############# config ##################
#
# set base_path /var/spool/apt-mirror
......@@ -15,7 +17,9 @@ set _tilde 0
############# end config ##############
{% 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 }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment