Skip to content
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

feat: OverlayFS -> AUFS whiteout conversion #55

Merged
merged 2 commits into from
Jun 4, 2024
Merged

Commits on Jun 3, 2024

  1. feat: OverlayFS -> AUFS whiteout conversion

    Allow OverlayFS whiteouts to be converted to AUFS, by filtering a tar
    stream.
    
    In this direction the conversion is a single pass, single operation.
    There is no requirement to pre-scan the tar.
    
    Close sylabs#53
    dtrudg committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    4df812e View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. fix: Avoid cleaning paths in whiteout transformations

    Prior to this PR, when a tar file contains an entry prefixed with `./`
    that is processed by a whiteout transformation, the `./` prefix is lost.
    
    This loss of the prefix was due to the use of `filepath` functions that
    clean the resulting path. Instead, use `filepath.Split` and manual
    concatenation with filepath.Seperator` to avoid the clean.
    dtrudg committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    580119f View commit details
    Browse the repository at this point in the history