Rename: cow/cowman -> storage/oci-storage

Rename the library module and CLI wrapper.
Rename daemon/graphdriver to drivers.
Catch up vendoring to match modules we've pruned.

Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
This commit is contained in:
Nalin Dahyabhai 2016-07-15 13:46:15 -04:00
parent f191bf69ff
commit 2783450a92
39 changed files with 59 additions and 59 deletions

View file

@ -7,8 +7,8 @@ import (
"os"
"path/filepath"
"github.com/docker/docker/pkg/archive"
"github.com/docker/docker/pkg/idtools"
"github.com/containers/storage/pkg/archive"
"github.com/containers/storage/pkg/idtools"
)
var chrootArchiver = &archive.Archiver{Untar: Untar}

View file

@ -13,9 +13,9 @@ import (
"testing"
"time"
"github.com/docker/docker/pkg/archive"
"github.com/docker/docker/pkg/reexec"
"github.com/docker/docker/pkg/system"
"github.com/containers/storage/pkg/archive"
"github.com/containers/storage/pkg/reexec"
"github.com/containers/storage/pkg/system"
)
func init() {

View file

@ -12,8 +12,8 @@ import (
"os"
"runtime"
"github.com/docker/docker/pkg/archive"
"github.com/docker/docker/pkg/reexec"
"github.com/containers/storage/pkg/archive"
"github.com/containers/storage/pkg/reexec"
)
// untar is the entry-point for docker-untar on re-exec. This is not used on

View file

@ -3,8 +3,8 @@ package chrootarchive
import (
"io"
"github.com/docker/docker/pkg/archive"
"github.com/docker/docker/pkg/longpath"
"github.com/containers/storage/pkg/archive"
"github.com/containers/storage/pkg/longpath"
)
// chroot is not supported by Windows

View file

@ -7,7 +7,7 @@ import (
"path/filepath"
"syscall"
"github.com/docker/docker/pkg/mount"
"github.com/containers/storage/pkg/mount"
)
// chroot on linux uses pivot_root instead of chroot

View file

@ -1,6 +1,6 @@
package chrootarchive
import "github.com/docker/docker/pkg/archive"
import "github.com/containers/storage/pkg/archive"
// ApplyLayer parses a diff in the standard layer format from `layer`,
// and applies it to the directory `dest`. The stream `layer` can only be

View file

@ -12,9 +12,9 @@ import (
"path/filepath"
"runtime"
"github.com/docker/docker/pkg/archive"
"github.com/docker/docker/pkg/reexec"
"github.com/docker/docker/pkg/system"
"github.com/containers/storage/pkg/archive"
"github.com/containers/storage/pkg/reexec"
"github.com/containers/storage/pkg/system"
)
type applyLayerResponse struct {

View file

@ -6,8 +6,8 @@ import (
"os"
"path/filepath"
"github.com/docker/docker/pkg/archive"
"github.com/docker/docker/pkg/longpath"
"github.com/containers/storage/pkg/archive"
"github.com/containers/storage/pkg/longpath"
)
// applyLayerHandler parses a diff in the standard layer format from `layer`, and

View file

@ -8,7 +8,7 @@ import (
"io/ioutil"
"os"
"github.com/docker/docker/pkg/reexec"
"github.com/containers/storage/pkg/reexec"
)
func init() {