mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
15 lines
375 B
Go
15 lines
375 B
Go
// +build !windows
|
|
|
|
package layer // import "github.com/docker/docker/layer"
|
|
|
|
import "runtime"
|
|
|
|
// setOS writes the "os" file to the layer filestore
|
|
func (fm *fileMetadataTransaction) setOS(os string) error {
|
|
return nil
|
|
}
|
|
|
|
// getOS reads the "os" file from the layer filestore
|
|
func (fms *fileMetadataStore) getOS(layer ChainID) (string, error) {
|
|
return runtime.GOOS, nil
|
|
}
|