Windows: Refactor volumes

Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: ba1725a94ee75603d3a21e0580be3954fc689137
Component: engine
This commit is contained in:
John Howard
2015-04-27 09:25:38 -07:00
parent 5e258c2907
commit ca495f5d0d
3 changed files with 32 additions and 16 deletions

View File

@ -13,7 +13,6 @@ import (
"github.com/docker/docker/pkg/chrootarchive"
"github.com/docker/docker/pkg/mount"
"github.com/docker/docker/pkg/symlink"
"github.com/docker/docker/pkg/system"
)
type volumeMount struct {
@ -314,21 +313,6 @@ func copyExistingContents(source, destination string) error {
return copyOwnership(source, destination)
}
// copyOwnership copies the permissions and uid:gid of the source file
// into the destination file
func copyOwnership(source, destination string) error {
stat, err := system.Stat(source)
if err != nil {
return err
}
if err := os.Chown(destination, int(stat.Uid()), int(stat.Gid())); err != nil {
return err
}
return os.Chmod(destination, os.FileMode(stat.Mode()))
}
func (container *Container) mountVolumes() error {
for dest, source := range container.Volumes {
v := container.daemon.volumes.Get(source)

View File

@ -0,0 +1,24 @@
// +build !windows
package daemon
import (
"os"
"github.com/docker/docker/pkg/system"
)
// copyOwnership copies the permissions and uid:gid of the source file
// into the destination file
func copyOwnership(source, destination string) error {
stat, err := system.Stat(source)
if err != nil {
return err
}
if err := os.Chown(destination, int(stat.Uid()), int(stat.Gid())); err != nil {
return err
}
return os.Chmod(destination, os.FileMode(stat.Mode()))
}

View File

@ -0,0 +1,8 @@
// +build windows
package daemon
// Not supported on Windows
func copyOwnership(source, destination string) error {
return nil
}