mirror of
https://git.proxmox.com/git/proxmox-offline-mirror
synced 2025-04-28 09:56:52 +00:00
pom: add support for ceph squid 19.x release
Ceph Squid has been available through all of our Ceph repositories since October 2024 [0], so it should be mirror-able through POM as well. Reported in the forum [1]. [0] https://forum.proxmox.com/threads/ceph-19-2-squid-stable-release-and-ceph-17-2-quincy-soon-to-be-eol.156433/ [1] https://forum.proxmox.com/threads/ceph-squid-not-availbale-in-proxmox-offline-mirror.164230/ Signed-off-by: Christoph Heiss <c.heiss@proxmox.com>
This commit is contained in:
parent
e7242f1219
commit
483acf3376
@ -255,12 +255,14 @@ fn action_add_mirror(config: &SectionConfigData) -> Result<Vec<MirrorConfig>, Er
|
||||
Pacific,
|
||||
Quincy,
|
||||
Reef,
|
||||
Squid,
|
||||
}
|
||||
|
||||
let releases = match release {
|
||||
Release::Bookworm => vec![
|
||||
(CephRelease::Quincy, "Quincy (17.x)"),
|
||||
(CephRelease::Reef, "Reef (18.x)"),
|
||||
(CephRelease::Squid, "Squid (19.x)"),
|
||||
],
|
||||
Release::Bullseye => {
|
||||
vec![
|
||||
@ -331,6 +333,7 @@ fn action_add_mirror(config: &SectionConfigData) -> Result<Vec<MirrorConfig>, Er
|
||||
CephRelease::Pacific => "pacific",
|
||||
CephRelease::Quincy => "quincy",
|
||||
CephRelease::Reef => "reef",
|
||||
CephRelease::Squid => "squid",
|
||||
};
|
||||
|
||||
let url = format!("{base_url}-{ceph_release} {release} {components}");
|
||||
|
Loading…
Reference in New Issue
Block a user