diff --git a/src/bin/proxmox-offline-mirror.rs b/src/bin/proxmox-offline-mirror.rs index 2da13f5..78e88c9 100644 --- a/src/bin/proxmox-offline-mirror.rs +++ b/src/bin/proxmox-offline-mirror.rs @@ -255,12 +255,14 @@ fn action_add_mirror(config: &SectionConfigData) -> Result, 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, Er CephRelease::Pacific => "pacific", CephRelease::Quincy => "quincy", CephRelease::Reef => "reef", + CephRelease::Squid => "squid", }; let url = format!("{base_url}-{ceph_release} {release} {components}");