c1e7924f7c
overlay2 no longer sets `archive.OverlayWhiteoutFormat` when
running in UserNS, so we can remove the complicated logic in the
archive package.
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
(cherry picked from commit 6322dfc217
)
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
7 lines
199 B
Go
7 lines
199 B
Go
// +build !linux
|
|
|
|
package archive // import "github.com/docker/docker/pkg/archive"
|
|
|
|
func getWhiteoutConverter(format WhiteoutFormat, inUserNS bool) (tarWhiteoutConverter, error) {
|
|
return nil, nil
|
|
}
|