Iβve been working with pulp_deb
to mirror upstream Ubuntu repositories and noticed a difference in the directory structure.
Upstream Ubuntu repos typically look like this:
dists/<release>/
But in Pulp, since each distribution requires a unique base_path
, the resulting structure ends up being something like:
<release>/dists/<release>/
e.g. noble/dists/noble, bionic/dists/bionic
This adds an extra level compared to the upstream layout.
My question is: Is there a way (or future plan) to mirror the exact upstream directory structure (dists/<release>
) in Pulp distributions? Or is the current base_path
constraint the expected and only supported approach?
Thanks!