mirror of
https://github.com/xcat2/xcat-core.git
synced 2026-09-24 08:44:04 +00:00
e36cdec3e9
The online autoinstall apt configuration offered every otherpkgdir entry as a flat one-line source with trusted=yes. From 24.04 on curtin converts a one-line source to Deb822 before it writes the file and keeps only the type, URI, suite and components, so the unsigned repository reached apt without the option and apt rejected it during the install. An entry written as URL, suite and components, the form the otherpkgs documentation gives for a mirror, was written whole as the URL, which apt cannot parse either. The sources are now Deb822 stanzas on those releases, which curtin writes as they are, with Trusted: yes, and a mirror entry keeps its suite and components as fields. The releases before 24.04 keep the one-line form, with the same fields. Signed-off-by: Vinícius Ferrão <2031761+viniciusferrao@users.noreply.github.com>