mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6322dfc217
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>
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
|
|
}
|