-
-
Notifications
You must be signed in to change notification settings - Fork 10
fix whiteout opaque prefix #39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Per - https://github.com/opencontainers/image-spec/blob/main/layer.md#whiteouts An opaque whiteout entry is a file with the name `.wh..wh..opq` but code is currently missing the second second dot
pombredanne
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you ++ ... this is a great catch!
I guess a small dot is enough to make the tests fail... Do you mind to help update them too?
|
This made me think that we may not be handling ".wh..wh..plnk" correctly or at all... This is the opportunity to get this corrected too IMHO. |
I do not see |
Yes... that's the point! we are missing this entirely. |
|
gentle ping ... I would like to merge this soon enough ... but I cannot if we have tests failing. |
|
Never mind... I will handle this directly and make the correction in a new branch including the plnk support |
* Do not skip opaque whiteouts * Do not treat whiteouts as relative paths * Log error for legacy .plnk and .aufs AUFS whiteouts * "Per https://github.com/opencontainers/image-spec/blob/main/layer.md#whiteouts An opaque whiteout entry is a file with the name .wh..wh..opq but code is currently missing the second second dot" Reported-by: AJ Arena @sig-aarena Reference: #39 Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
* Do not skip opaque whiteouts * Do not treat whiteouts as relative paths * Log error for legacy .plnk and .aufs AUFS whiteouts * "Per https://github.com/opencontainers/image-spec/blob/main/layer.md#whiteouts An opaque whiteout entry is a file with the name .wh..wh..opq but code is currently missing the second second dot" Reported-by: AJ Arena @sig-aarena Reference: #39 Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
|
@sig-aarena FYI, this is fixed there 7ad595b |
Per - https://github.com/opencontainers/image-spec/blob/main/layer.md#whiteouts
An opaque whiteout entry is a file with the name
.wh..wh..opqbut code is currently missing the second second dot