moby--moby/layer/filestore_unix.go

14 lines
296 B
Go
Raw Normal View History

// +build !windows
package layer
// SetOS writes the "os" file to the layer filestore
func (fm *fileMetadataTransaction) SetOS(os OS) error {
return nil
}
// GetOS reads the "os" file from the layer filestore
func (fms *fileMetadataStore) GetOS(layer ChainID) (OS, error) {
return "", nil
}