Hello, I have a PVE host running 7.4-16. I have installed proxmox-offline-mirror version 0.5.2. I am trying to mirror the MongoDB repo with the following config:
However, when I try to create a snapshot, it doesn't download any packages:
It seems to download the Packages file, but it doesn't seem to parse any actual package content. Am I doing something wrong?
Code:
proxmox-offline-mirror config mirror add \
--id mongodb-server-6 \
--architectures amd64 \
--architectures all \
--repository 'deb https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 multiverse' \
--key-path /etc/apt/trusted.gpg.d/mongodb-server-6.0.asc \
--sync true \
--verify true \
--ignore-errors true \
--weak-crypto allow-sha1=1 \
--base-dir /data1
However, when I try to create a snapshot, it doesn't download any packages:
Code:
root@pom:~# proxmox-offline-mirror mirror snapshot create mongodb-server-6
Fetching Release/Release.gpg files
-> GET 'https://repo.mongodb.org/apt/ubuntu/dists/jammy/mongodb-org/6.0/Release.gpg'..
-> GET 'https://repo.mongodb.org/apt/ubuntu/dists/jammy/mongodb-org/6.0/Release'..
Verifying 'Release(.gpg)' signature using provided repository key..
Success
Parsing Release..
'Release' file has 3 referenced files..
Fetching InRelease file
-> GET 'https://repo.mongodb.org/apt/ubuntu/dists/jammy/mongodb-org/6.0/InRelease'..
InRelease fetch failure: https://repo.mongodb.org/apt/ubuntu/dists/jammy/mongodb-org/6.0/InRelease: status code 404
Skipping multiverse/binary-s390x/Packages.gz
Skipping multiverse/binary-arm64/Packages.gz
Component 'multiverse'
"multiverse/binary-amd64/Packages": Packages("amd64", None)
"multiverse/binary-amd64/Packages.gz": Packages("amd64", Some(Gzip))
Component references count: 1
Component indices size: 246687
Total indices count: 1
Total indices size: 246687
Skipped 2 references
Fetching indices for component 'multiverse'
Fetching 'multiverse/binary-amd64/Packages'..
0 packages totalling 0
Progress: 0 new files (0b), re-used 1 existing files (100.00% re-used)..
Total deb size for component: 0
Total dsc size for component: 0
Total deb size: 0
Fetching multiverse packages..
multiverse/binary-amd64/Packages - no files, skipping.
Stats: 1 new files (3960b), re-used 1 existing files (50.00% re-used)..
Skipped downloading 0 packages totalling 0b
Rotating temp. snapshot in-place: "2023-07-20T20:27:59Z.tmp" -> "2023-07-20T20:27:59Z"
It seems to download the Packages file, but it doesn't seem to parse any actual package content. Am I doing something wrong?