suggested copy://<repo> path results in false-positive errors for failing to stat existsing fails #7
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Same usecase I have as in #6 but with the warning-as-error detection patched out to be able to continue.
I tried to use the local repo via file:///path/to/repo but then I get:
OK, so changing the path to copy:///path/to/repo and re-running gives me:
But that, and all other package files it complains about, exist just fine:
For completnesss sake the whole mmdebstrap command:
Maybe I'm doing something completely stupid, then I'd appreaciate some hints (and say sorry for the noise), but I do not see anything obviously wrong. A file-path permission error would probably look different too, I'd guess.
It probably fails after the step
I: installing remaining packages inside the chroot...
, right?This is expected, because the path
/root/sources/...
cannot be accessed from inside the chroot. You can only use acopy://
mirror for the essential packages.yes.
But why then the first error? Isn't this a catch 22?
You mean the
E: nothing got downloaded
error? That one is independent of the second.The fact that
file://
is not allowed is also a relict from the past when mmdebstrap only relied on the files downloaded by apt to figure out which packages are essential. Now mmdebstrap knows about a different way and it should be possible to makefile://
possible again. I'll look into it and leave this issue open until I know more.This will change with the next mmdebstrap release. Then you can use
copy://
for everything.