diff --git a/Dockerfile b/Dockerfile index b7f995a..931594d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -y \ ENV GO_VERSION 1.5.2 RUN curl -sSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" | tar -v -C /usr/local -xz ENV PATH /go/bin:/usr/local/go/bin:$PATH -ENV GOPATH /go +ENV GOPATH /go:/go/src/github.com/docker/containerd/vendor # install golint/vet RUN go get github.com/golang/lint/golint \ @@ -21,5 +21,9 @@ RUN go get github.com/golang/lint/golint \ COPY . /go/src/github.com/docker/containerd +# get deps, until they are in vendor +# TODO: remomve this when there is a dep tool +RUN go get -d -v github.com/docker/containerd/ctr \ + && go get -d -v github.com/docker/containerd/containerd WORKDIR /go/src/github.com/docker/containerd diff --git a/Makefile b/Makefile index a7f5340..a3adac9 100644 --- a/Makefile +++ b/Makefile @@ -11,16 +11,9 @@ endif DOCKER_IMAGE := containerd-dev$(if $(GIT_BRANCH),:$(GIT_BRANCH)) DOCKER_RUN := docker run --rm -i $(DOCKER_FLAGS) "$(DOCKER_IMAGE)" -export GO15VENDOREXPERIMENT:=1 -GOLANG_VERSION:=$(shell go version | cut -d ' ' -f3 | cut -c 3-) +export GOPATH:=$(CURDIR)/vendor:$(GOPATH) - -all: check_version client daemon shim - -check_version: -ifneq ($(shell /bin/echo -e "1.5\n${GOLANG_VERSION}" | sort -V | head -n1),1.5) - $(error "Golang 1.5+ required to build containerd. Current version: ${GOLANG_VERSION}") -endif +all: client daemon shim bin: mkdir -p bin/ diff --git a/README.md b/README.md index 9a04745..78e4312 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ For more documentation on various subjects refer to the `/docs` directory in thi ## Building -You will need to make sure that you have Go 1.5+ installed on your system and the containerd repository is cloned +You will need to make sure that you have Go installed on your system and the containerd repository is cloned in your `$GOPATH`. You will also need to make sure that you have all the dependencies cloned as well. Currently, contributing to containerd is not for the first time devs as many dependencies are not vendored and -work is being completed at a high rate. +work is being completed at a high rate. After that just run `make` and the binaries for the daemon and client will be localed in the `bin/` directory. diff --git a/vendor/github.com/Azure/go-ansiterm/LICENSE b/vendor/src/github.com/Azure/go-ansiterm/LICENSE similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/LICENSE rename to vendor/src/github.com/Azure/go-ansiterm/LICENSE diff --git a/vendor/github.com/Azure/go-ansiterm/README.md b/vendor/src/github.com/Azure/go-ansiterm/README.md similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/README.md rename to vendor/src/github.com/Azure/go-ansiterm/README.md diff --git a/vendor/github.com/Azure/go-ansiterm/constants.go b/vendor/src/github.com/Azure/go-ansiterm/constants.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/constants.go rename to vendor/src/github.com/Azure/go-ansiterm/constants.go diff --git a/vendor/github.com/Azure/go-ansiterm/context.go b/vendor/src/github.com/Azure/go-ansiterm/context.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/context.go rename to vendor/src/github.com/Azure/go-ansiterm/context.go diff --git a/vendor/github.com/Azure/go-ansiterm/csi_entry_state.go b/vendor/src/github.com/Azure/go-ansiterm/csi_entry_state.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/csi_entry_state.go rename to vendor/src/github.com/Azure/go-ansiterm/csi_entry_state.go diff --git a/vendor/github.com/Azure/go-ansiterm/csi_param_state.go b/vendor/src/github.com/Azure/go-ansiterm/csi_param_state.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/csi_param_state.go rename to vendor/src/github.com/Azure/go-ansiterm/csi_param_state.go diff --git a/vendor/github.com/Azure/go-ansiterm/escape_intermediate_state.go b/vendor/src/github.com/Azure/go-ansiterm/escape_intermediate_state.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/escape_intermediate_state.go rename to vendor/src/github.com/Azure/go-ansiterm/escape_intermediate_state.go diff --git a/vendor/github.com/Azure/go-ansiterm/escape_state.go b/vendor/src/github.com/Azure/go-ansiterm/escape_state.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/escape_state.go rename to vendor/src/github.com/Azure/go-ansiterm/escape_state.go diff --git a/vendor/github.com/Azure/go-ansiterm/event_handler.go b/vendor/src/github.com/Azure/go-ansiterm/event_handler.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/event_handler.go rename to vendor/src/github.com/Azure/go-ansiterm/event_handler.go diff --git a/vendor/github.com/Azure/go-ansiterm/ground_state.go b/vendor/src/github.com/Azure/go-ansiterm/ground_state.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/ground_state.go rename to vendor/src/github.com/Azure/go-ansiterm/ground_state.go diff --git a/vendor/github.com/Azure/go-ansiterm/osc_string_state.go b/vendor/src/github.com/Azure/go-ansiterm/osc_string_state.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/osc_string_state.go rename to vendor/src/github.com/Azure/go-ansiterm/osc_string_state.go diff --git a/vendor/github.com/Azure/go-ansiterm/parser.go b/vendor/src/github.com/Azure/go-ansiterm/parser.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/parser.go rename to vendor/src/github.com/Azure/go-ansiterm/parser.go diff --git a/vendor/github.com/Azure/go-ansiterm/parser_action_helpers.go b/vendor/src/github.com/Azure/go-ansiterm/parser_action_helpers.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/parser_action_helpers.go rename to vendor/src/github.com/Azure/go-ansiterm/parser_action_helpers.go diff --git a/vendor/github.com/Azure/go-ansiterm/parser_actions.go b/vendor/src/github.com/Azure/go-ansiterm/parser_actions.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/parser_actions.go rename to vendor/src/github.com/Azure/go-ansiterm/parser_actions.go diff --git a/vendor/github.com/Azure/go-ansiterm/parser_test_helpers.go b/vendor/src/github.com/Azure/go-ansiterm/parser_test_helpers.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/parser_test_helpers.go rename to vendor/src/github.com/Azure/go-ansiterm/parser_test_helpers.go diff --git a/vendor/github.com/Azure/go-ansiterm/parser_test_utilities.go b/vendor/src/github.com/Azure/go-ansiterm/parser_test_utilities.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/parser_test_utilities.go rename to vendor/src/github.com/Azure/go-ansiterm/parser_test_utilities.go diff --git a/vendor/github.com/Azure/go-ansiterm/states.go b/vendor/src/github.com/Azure/go-ansiterm/states.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/states.go rename to vendor/src/github.com/Azure/go-ansiterm/states.go diff --git a/vendor/github.com/Azure/go-ansiterm/test_event_handler.go b/vendor/src/github.com/Azure/go-ansiterm/test_event_handler.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/test_event_handler.go rename to vendor/src/github.com/Azure/go-ansiterm/test_event_handler.go diff --git a/vendor/github.com/Azure/go-ansiterm/utilities.go b/vendor/src/github.com/Azure/go-ansiterm/utilities.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/utilities.go rename to vendor/src/github.com/Azure/go-ansiterm/utilities.go diff --git a/vendor/github.com/Azure/go-ansiterm/winterm/ansi.go b/vendor/src/github.com/Azure/go-ansiterm/winterm/ansi.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/winterm/ansi.go rename to vendor/src/github.com/Azure/go-ansiterm/winterm/ansi.go diff --git a/vendor/github.com/Azure/go-ansiterm/winterm/api.go b/vendor/src/github.com/Azure/go-ansiterm/winterm/api.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/winterm/api.go rename to vendor/src/github.com/Azure/go-ansiterm/winterm/api.go diff --git a/vendor/github.com/Azure/go-ansiterm/winterm/attr_translation.go b/vendor/src/github.com/Azure/go-ansiterm/winterm/attr_translation.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/winterm/attr_translation.go rename to vendor/src/github.com/Azure/go-ansiterm/winterm/attr_translation.go diff --git a/vendor/github.com/Azure/go-ansiterm/winterm/cursor_helpers.go b/vendor/src/github.com/Azure/go-ansiterm/winterm/cursor_helpers.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/winterm/cursor_helpers.go rename to vendor/src/github.com/Azure/go-ansiterm/winterm/cursor_helpers.go diff --git a/vendor/github.com/Azure/go-ansiterm/winterm/erase_helpers.go b/vendor/src/github.com/Azure/go-ansiterm/winterm/erase_helpers.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/winterm/erase_helpers.go rename to vendor/src/github.com/Azure/go-ansiterm/winterm/erase_helpers.go diff --git a/vendor/github.com/Azure/go-ansiterm/winterm/scroll_helper.go b/vendor/src/github.com/Azure/go-ansiterm/winterm/scroll_helper.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/winterm/scroll_helper.go rename to vendor/src/github.com/Azure/go-ansiterm/winterm/scroll_helper.go diff --git a/vendor/github.com/Azure/go-ansiterm/winterm/utilities.go b/vendor/src/github.com/Azure/go-ansiterm/winterm/utilities.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/winterm/utilities.go rename to vendor/src/github.com/Azure/go-ansiterm/winterm/utilities.go diff --git a/vendor/github.com/Azure/go-ansiterm/winterm/win_event_handler.go b/vendor/src/github.com/Azure/go-ansiterm/winterm/win_event_handler.go similarity index 100% rename from vendor/github.com/Azure/go-ansiterm/winterm/win_event_handler.go rename to vendor/src/github.com/Azure/go-ansiterm/winterm/win_event_handler.go diff --git a/vendor/github.com/Sirupsen/logrus/.gitignore b/vendor/src/github.com/Sirupsen/logrus/.gitignore similarity index 100% rename from vendor/github.com/Sirupsen/logrus/.gitignore rename to vendor/src/github.com/Sirupsen/logrus/.gitignore diff --git a/vendor/github.com/Sirupsen/logrus/.travis.yml b/vendor/src/github.com/Sirupsen/logrus/.travis.yml similarity index 100% rename from vendor/github.com/Sirupsen/logrus/.travis.yml rename to vendor/src/github.com/Sirupsen/logrus/.travis.yml diff --git a/vendor/github.com/Sirupsen/logrus/CHANGELOG.md b/vendor/src/github.com/Sirupsen/logrus/CHANGELOG.md similarity index 100% rename from vendor/github.com/Sirupsen/logrus/CHANGELOG.md rename to vendor/src/github.com/Sirupsen/logrus/CHANGELOG.md diff --git a/vendor/github.com/Sirupsen/logrus/LICENSE b/vendor/src/github.com/Sirupsen/logrus/LICENSE similarity index 100% rename from vendor/github.com/Sirupsen/logrus/LICENSE rename to vendor/src/github.com/Sirupsen/logrus/LICENSE diff --git a/vendor/github.com/Sirupsen/logrus/README.md b/vendor/src/github.com/Sirupsen/logrus/README.md similarity index 100% rename from vendor/github.com/Sirupsen/logrus/README.md rename to vendor/src/github.com/Sirupsen/logrus/README.md diff --git a/vendor/github.com/Sirupsen/logrus/doc.go b/vendor/src/github.com/Sirupsen/logrus/doc.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/doc.go rename to vendor/src/github.com/Sirupsen/logrus/doc.go diff --git a/vendor/github.com/Sirupsen/logrus/entry.go b/vendor/src/github.com/Sirupsen/logrus/entry.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/entry.go rename to vendor/src/github.com/Sirupsen/logrus/entry.go diff --git a/vendor/github.com/Sirupsen/logrus/exported.go b/vendor/src/github.com/Sirupsen/logrus/exported.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/exported.go rename to vendor/src/github.com/Sirupsen/logrus/exported.go diff --git a/vendor/github.com/Sirupsen/logrus/formatter.go b/vendor/src/github.com/Sirupsen/logrus/formatter.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/formatter.go rename to vendor/src/github.com/Sirupsen/logrus/formatter.go diff --git a/vendor/github.com/Sirupsen/logrus/hooks.go b/vendor/src/github.com/Sirupsen/logrus/hooks.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/hooks.go rename to vendor/src/github.com/Sirupsen/logrus/hooks.go diff --git a/vendor/github.com/Sirupsen/logrus/json_formatter.go b/vendor/src/github.com/Sirupsen/logrus/json_formatter.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/json_formatter.go rename to vendor/src/github.com/Sirupsen/logrus/json_formatter.go diff --git a/vendor/github.com/Sirupsen/logrus/logger.go b/vendor/src/github.com/Sirupsen/logrus/logger.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/logger.go rename to vendor/src/github.com/Sirupsen/logrus/logger.go diff --git a/vendor/github.com/Sirupsen/logrus/logrus.go b/vendor/src/github.com/Sirupsen/logrus/logrus.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/logrus.go rename to vendor/src/github.com/Sirupsen/logrus/logrus.go diff --git a/vendor/github.com/Sirupsen/logrus/terminal_bsd.go b/vendor/src/github.com/Sirupsen/logrus/terminal_bsd.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/terminal_bsd.go rename to vendor/src/github.com/Sirupsen/logrus/terminal_bsd.go diff --git a/vendor/github.com/Sirupsen/logrus/terminal_linux.go b/vendor/src/github.com/Sirupsen/logrus/terminal_linux.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/terminal_linux.go rename to vendor/src/github.com/Sirupsen/logrus/terminal_linux.go diff --git a/vendor/github.com/Sirupsen/logrus/terminal_notwindows.go b/vendor/src/github.com/Sirupsen/logrus/terminal_notwindows.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/terminal_notwindows.go rename to vendor/src/github.com/Sirupsen/logrus/terminal_notwindows.go diff --git a/vendor/github.com/Sirupsen/logrus/terminal_solaris.go b/vendor/src/github.com/Sirupsen/logrus/terminal_solaris.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/terminal_solaris.go rename to vendor/src/github.com/Sirupsen/logrus/terminal_solaris.go diff --git a/vendor/github.com/Sirupsen/logrus/terminal_windows.go b/vendor/src/github.com/Sirupsen/logrus/terminal_windows.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/terminal_windows.go rename to vendor/src/github.com/Sirupsen/logrus/terminal_windows.go diff --git a/vendor/github.com/Sirupsen/logrus/text_formatter.go b/vendor/src/github.com/Sirupsen/logrus/text_formatter.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/text_formatter.go rename to vendor/src/github.com/Sirupsen/logrus/text_formatter.go diff --git a/vendor/github.com/Sirupsen/logrus/writer.go b/vendor/src/github.com/Sirupsen/logrus/writer.go similarity index 100% rename from vendor/github.com/Sirupsen/logrus/writer.go rename to vendor/src/github.com/Sirupsen/logrus/writer.go diff --git a/vendor/github.com/cloudfoundry/gosigar/.gitignore b/vendor/src/github.com/cloudfoundry/gosigar/.gitignore similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/.gitignore rename to vendor/src/github.com/cloudfoundry/gosigar/.gitignore diff --git a/vendor/github.com/cloudfoundry/gosigar/.travis.yml b/vendor/src/github.com/cloudfoundry/gosigar/.travis.yml similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/.travis.yml rename to vendor/src/github.com/cloudfoundry/gosigar/.travis.yml diff --git a/vendor/github.com/cloudfoundry/gosigar/LICENSE b/vendor/src/github.com/cloudfoundry/gosigar/LICENSE similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/LICENSE rename to vendor/src/github.com/cloudfoundry/gosigar/LICENSE diff --git a/vendor/github.com/cloudfoundry/gosigar/NOTICE b/vendor/src/github.com/cloudfoundry/gosigar/NOTICE similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/NOTICE rename to vendor/src/github.com/cloudfoundry/gosigar/NOTICE diff --git a/vendor/github.com/cloudfoundry/gosigar/README.md b/vendor/src/github.com/cloudfoundry/gosigar/README.md similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/README.md rename to vendor/src/github.com/cloudfoundry/gosigar/README.md diff --git a/vendor/github.com/cloudfoundry/gosigar/Vagrantfile b/vendor/src/github.com/cloudfoundry/gosigar/Vagrantfile similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/Vagrantfile rename to vendor/src/github.com/cloudfoundry/gosigar/Vagrantfile diff --git a/vendor/github.com/cloudfoundry/gosigar/concrete_sigar.go b/vendor/src/github.com/cloudfoundry/gosigar/concrete_sigar.go similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/concrete_sigar.go rename to vendor/src/github.com/cloudfoundry/gosigar/concrete_sigar.go diff --git a/vendor/github.com/cloudfoundry/gosigar/sigar_darwin.go b/vendor/src/github.com/cloudfoundry/gosigar/sigar_darwin.go similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/sigar_darwin.go rename to vendor/src/github.com/cloudfoundry/gosigar/sigar_darwin.go diff --git a/vendor/github.com/cloudfoundry/gosigar/sigar_format.go b/vendor/src/github.com/cloudfoundry/gosigar/sigar_format.go similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/sigar_format.go rename to vendor/src/github.com/cloudfoundry/gosigar/sigar_format.go diff --git a/vendor/github.com/cloudfoundry/gosigar/sigar_interface.go b/vendor/src/github.com/cloudfoundry/gosigar/sigar_interface.go similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/sigar_interface.go rename to vendor/src/github.com/cloudfoundry/gosigar/sigar_interface.go diff --git a/vendor/github.com/cloudfoundry/gosigar/sigar_linux.go b/vendor/src/github.com/cloudfoundry/gosigar/sigar_linux.go similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/sigar_linux.go rename to vendor/src/github.com/cloudfoundry/gosigar/sigar_linux.go diff --git a/vendor/github.com/cloudfoundry/gosigar/sigar_unix.go b/vendor/src/github.com/cloudfoundry/gosigar/sigar_unix.go similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/sigar_unix.go rename to vendor/src/github.com/cloudfoundry/gosigar/sigar_unix.go diff --git a/vendor/github.com/cloudfoundry/gosigar/sigar_util.go b/vendor/src/github.com/cloudfoundry/gosigar/sigar_util.go similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/sigar_util.go rename to vendor/src/github.com/cloudfoundry/gosigar/sigar_util.go diff --git a/vendor/github.com/cloudfoundry/gosigar/sigar_windows.go b/vendor/src/github.com/cloudfoundry/gosigar/sigar_windows.go similarity index 100% rename from vendor/github.com/cloudfoundry/gosigar/sigar_windows.go rename to vendor/src/github.com/cloudfoundry/gosigar/sigar_windows.go diff --git a/vendor/github.com/codegangsta/cli/.travis.yml b/vendor/src/github.com/codegangsta/cli/.travis.yml similarity index 100% rename from vendor/github.com/codegangsta/cli/.travis.yml rename to vendor/src/github.com/codegangsta/cli/.travis.yml diff --git a/vendor/github.com/codegangsta/cli/LICENSE b/vendor/src/github.com/codegangsta/cli/LICENSE similarity index 100% rename from vendor/github.com/codegangsta/cli/LICENSE rename to vendor/src/github.com/codegangsta/cli/LICENSE diff --git a/vendor/github.com/codegangsta/cli/README.md b/vendor/src/github.com/codegangsta/cli/README.md similarity index 100% rename from vendor/github.com/codegangsta/cli/README.md rename to vendor/src/github.com/codegangsta/cli/README.md diff --git a/vendor/github.com/codegangsta/cli/app.go b/vendor/src/github.com/codegangsta/cli/app.go similarity index 100% rename from vendor/github.com/codegangsta/cli/app.go rename to vendor/src/github.com/codegangsta/cli/app.go diff --git a/vendor/github.com/codegangsta/cli/cli.go b/vendor/src/github.com/codegangsta/cli/cli.go similarity index 100% rename from vendor/github.com/codegangsta/cli/cli.go rename to vendor/src/github.com/codegangsta/cli/cli.go diff --git a/vendor/github.com/codegangsta/cli/command.go b/vendor/src/github.com/codegangsta/cli/command.go similarity index 100% rename from vendor/github.com/codegangsta/cli/command.go rename to vendor/src/github.com/codegangsta/cli/command.go diff --git a/vendor/github.com/codegangsta/cli/context.go b/vendor/src/github.com/codegangsta/cli/context.go similarity index 100% rename from vendor/github.com/codegangsta/cli/context.go rename to vendor/src/github.com/codegangsta/cli/context.go diff --git a/vendor/github.com/codegangsta/cli/flag.go b/vendor/src/github.com/codegangsta/cli/flag.go similarity index 100% rename from vendor/github.com/codegangsta/cli/flag.go rename to vendor/src/github.com/codegangsta/cli/flag.go diff --git a/vendor/github.com/codegangsta/cli/help.go b/vendor/src/github.com/codegangsta/cli/help.go similarity index 100% rename from vendor/github.com/codegangsta/cli/help.go rename to vendor/src/github.com/codegangsta/cli/help.go diff --git a/vendor/github.com/coreos/go-systemd/LICENSE b/vendor/src/github.com/coreos/go-systemd/LICENSE similarity index 100% rename from vendor/github.com/coreos/go-systemd/LICENSE rename to vendor/src/github.com/coreos/go-systemd/LICENSE diff --git a/vendor/github.com/coreos/go-systemd/dbus/dbus.go b/vendor/src/github.com/coreos/go-systemd/dbus/dbus.go similarity index 100% rename from vendor/github.com/coreos/go-systemd/dbus/dbus.go rename to vendor/src/github.com/coreos/go-systemd/dbus/dbus.go diff --git a/vendor/github.com/coreos/go-systemd/dbus/methods.go b/vendor/src/github.com/coreos/go-systemd/dbus/methods.go similarity index 100% rename from vendor/github.com/coreos/go-systemd/dbus/methods.go rename to vendor/src/github.com/coreos/go-systemd/dbus/methods.go diff --git a/vendor/github.com/coreos/go-systemd/dbus/properties.go b/vendor/src/github.com/coreos/go-systemd/dbus/properties.go similarity index 100% rename from vendor/github.com/coreos/go-systemd/dbus/properties.go rename to vendor/src/github.com/coreos/go-systemd/dbus/properties.go diff --git a/vendor/github.com/coreos/go-systemd/dbus/set.go b/vendor/src/github.com/coreos/go-systemd/dbus/set.go similarity index 100% rename from vendor/github.com/coreos/go-systemd/dbus/set.go rename to vendor/src/github.com/coreos/go-systemd/dbus/set.go diff --git a/vendor/github.com/coreos/go-systemd/dbus/subscription.go b/vendor/src/github.com/coreos/go-systemd/dbus/subscription.go similarity index 100% rename from vendor/github.com/coreos/go-systemd/dbus/subscription.go rename to vendor/src/github.com/coreos/go-systemd/dbus/subscription.go diff --git a/vendor/github.com/coreos/go-systemd/dbus/subscription_set.go b/vendor/src/github.com/coreos/go-systemd/dbus/subscription_set.go similarity index 100% rename from vendor/github.com/coreos/go-systemd/dbus/subscription_set.go rename to vendor/src/github.com/coreos/go-systemd/dbus/subscription_set.go diff --git a/vendor/github.com/coreos/go-systemd/util/util.go b/vendor/src/github.com/coreos/go-systemd/util/util.go similarity index 100% rename from vendor/github.com/coreos/go-systemd/util/util.go rename to vendor/src/github.com/coreos/go-systemd/util/util.go diff --git a/vendor/github.com/cyberdelia/go-metrics-graphite/AUTHORS b/vendor/src/github.com/cyberdelia/go-metrics-graphite/AUTHORS similarity index 100% rename from vendor/github.com/cyberdelia/go-metrics-graphite/AUTHORS rename to vendor/src/github.com/cyberdelia/go-metrics-graphite/AUTHORS diff --git a/vendor/github.com/cyberdelia/go-metrics-graphite/LICENSE b/vendor/src/github.com/cyberdelia/go-metrics-graphite/LICENSE similarity index 100% rename from vendor/github.com/cyberdelia/go-metrics-graphite/LICENSE rename to vendor/src/github.com/cyberdelia/go-metrics-graphite/LICENSE diff --git a/vendor/github.com/cyberdelia/go-metrics-graphite/README.md b/vendor/src/github.com/cyberdelia/go-metrics-graphite/README.md similarity index 100% rename from vendor/github.com/cyberdelia/go-metrics-graphite/README.md rename to vendor/src/github.com/cyberdelia/go-metrics-graphite/README.md diff --git a/vendor/github.com/cyberdelia/go-metrics-graphite/graphite.go b/vendor/src/github.com/cyberdelia/go-metrics-graphite/graphite.go similarity index 100% rename from vendor/github.com/cyberdelia/go-metrics-graphite/graphite.go rename to vendor/src/github.com/cyberdelia/go-metrics-graphite/graphite.go diff --git a/vendor/github.com/docker/docker/LICENSE b/vendor/src/github.com/docker/docker/LICENSE similarity index 100% rename from vendor/github.com/docker/docker/LICENSE rename to vendor/src/github.com/docker/docker/LICENSE diff --git a/vendor/github.com/docker/docker/contrib/docker-engine-selinux/LICENSE b/vendor/src/github.com/docker/docker/contrib/docker-engine-selinux/LICENSE similarity index 100% rename from vendor/github.com/docker/docker/contrib/docker-engine-selinux/LICENSE rename to vendor/src/github.com/docker/docker/contrib/docker-engine-selinux/LICENSE diff --git a/vendor/github.com/docker/docker/contrib/syntax/vim/LICENSE b/vendor/src/github.com/docker/docker/contrib/syntax/vim/LICENSE similarity index 100% rename from vendor/github.com/docker/docker/contrib/syntax/vim/LICENSE rename to vendor/src/github.com/docker/docker/contrib/syntax/vim/LICENSE diff --git a/vendor/github.com/docker/docker/pkg/mflag/LICENSE b/vendor/src/github.com/docker/docker/pkg/mflag/LICENSE similarity index 100% rename from vendor/github.com/docker/docker/pkg/mflag/LICENSE rename to vendor/src/github.com/docker/docker/pkg/mflag/LICENSE diff --git a/vendor/github.com/docker/docker/pkg/mount/flags.go b/vendor/src/github.com/docker/docker/pkg/mount/flags.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/mount/flags.go rename to vendor/src/github.com/docker/docker/pkg/mount/flags.go diff --git a/vendor/github.com/docker/docker/pkg/mount/flags_freebsd.go b/vendor/src/github.com/docker/docker/pkg/mount/flags_freebsd.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/mount/flags_freebsd.go rename to vendor/src/github.com/docker/docker/pkg/mount/flags_freebsd.go diff --git a/vendor/github.com/docker/docker/pkg/mount/flags_linux.go b/vendor/src/github.com/docker/docker/pkg/mount/flags_linux.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/mount/flags_linux.go rename to vendor/src/github.com/docker/docker/pkg/mount/flags_linux.go diff --git a/vendor/github.com/docker/docker/pkg/mount/flags_unsupported.go b/vendor/src/github.com/docker/docker/pkg/mount/flags_unsupported.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/mount/flags_unsupported.go rename to vendor/src/github.com/docker/docker/pkg/mount/flags_unsupported.go diff --git a/vendor/github.com/docker/docker/pkg/mount/mount.go b/vendor/src/github.com/docker/docker/pkg/mount/mount.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/mount/mount.go rename to vendor/src/github.com/docker/docker/pkg/mount/mount.go diff --git a/vendor/github.com/docker/docker/pkg/mount/mounter_freebsd.go b/vendor/src/github.com/docker/docker/pkg/mount/mounter_freebsd.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/mount/mounter_freebsd.go rename to vendor/src/github.com/docker/docker/pkg/mount/mounter_freebsd.go diff --git a/vendor/github.com/docker/docker/pkg/mount/mounter_linux.go b/vendor/src/github.com/docker/docker/pkg/mount/mounter_linux.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/mount/mounter_linux.go rename to vendor/src/github.com/docker/docker/pkg/mount/mounter_linux.go diff --git a/vendor/github.com/docker/docker/pkg/mount/mounter_unsupported.go b/vendor/src/github.com/docker/docker/pkg/mount/mounter_unsupported.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/mount/mounter_unsupported.go rename to vendor/src/github.com/docker/docker/pkg/mount/mounter_unsupported.go diff --git a/vendor/github.com/docker/docker/pkg/mount/mountinfo.go b/vendor/src/github.com/docker/docker/pkg/mount/mountinfo.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/mount/mountinfo.go rename to vendor/src/github.com/docker/docker/pkg/mount/mountinfo.go diff --git a/vendor/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go b/vendor/src/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go rename to vendor/src/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go diff --git a/vendor/github.com/docker/docker/pkg/mount/mountinfo_linux.go b/vendor/src/github.com/docker/docker/pkg/mount/mountinfo_linux.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/mount/mountinfo_linux.go rename to vendor/src/github.com/docker/docker/pkg/mount/mountinfo_linux.go diff --git a/vendor/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go b/vendor/src/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go rename to vendor/src/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go diff --git a/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go b/vendor/src/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go rename to vendor/src/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go diff --git a/vendor/github.com/docker/docker/pkg/symlink/LICENSE.APACHE b/vendor/src/github.com/docker/docker/pkg/symlink/LICENSE.APACHE similarity index 100% rename from vendor/github.com/docker/docker/pkg/symlink/LICENSE.APACHE rename to vendor/src/github.com/docker/docker/pkg/symlink/LICENSE.APACHE diff --git a/vendor/github.com/docker/docker/pkg/symlink/LICENSE.BSD b/vendor/src/github.com/docker/docker/pkg/symlink/LICENSE.BSD similarity index 100% rename from vendor/github.com/docker/docker/pkg/symlink/LICENSE.BSD rename to vendor/src/github.com/docker/docker/pkg/symlink/LICENSE.BSD diff --git a/vendor/github.com/docker/docker/pkg/symlink/README.md b/vendor/src/github.com/docker/docker/pkg/symlink/README.md similarity index 100% rename from vendor/github.com/docker/docker/pkg/symlink/README.md rename to vendor/src/github.com/docker/docker/pkg/symlink/README.md diff --git a/vendor/github.com/docker/docker/pkg/symlink/fs.go b/vendor/src/github.com/docker/docker/pkg/symlink/fs.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/symlink/fs.go rename to vendor/src/github.com/docker/docker/pkg/symlink/fs.go diff --git a/vendor/github.com/docker/docker/pkg/symlink/fs_unix.go b/vendor/src/github.com/docker/docker/pkg/symlink/fs_unix.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/symlink/fs_unix.go rename to vendor/src/github.com/docker/docker/pkg/symlink/fs_unix.go diff --git a/vendor/github.com/docker/docker/pkg/symlink/fs_windows.go b/vendor/src/github.com/docker/docker/pkg/symlink/fs_windows.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/symlink/fs_windows.go rename to vendor/src/github.com/docker/docker/pkg/symlink/fs_windows.go diff --git a/vendor/github.com/docker/docker/pkg/system/chtimes.go b/vendor/src/github.com/docker/docker/pkg/system/chtimes.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/chtimes.go rename to vendor/src/github.com/docker/docker/pkg/system/chtimes.go diff --git a/vendor/github.com/docker/docker/pkg/system/errors.go b/vendor/src/github.com/docker/docker/pkg/system/errors.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/errors.go rename to vendor/src/github.com/docker/docker/pkg/system/errors.go diff --git a/vendor/github.com/docker/docker/pkg/system/events_windows.go b/vendor/src/github.com/docker/docker/pkg/system/events_windows.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/events_windows.go rename to vendor/src/github.com/docker/docker/pkg/system/events_windows.go diff --git a/vendor/github.com/docker/docker/pkg/system/filesys.go b/vendor/src/github.com/docker/docker/pkg/system/filesys.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/filesys.go rename to vendor/src/github.com/docker/docker/pkg/system/filesys.go diff --git a/vendor/github.com/docker/docker/pkg/system/filesys_windows.go b/vendor/src/github.com/docker/docker/pkg/system/filesys_windows.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/filesys_windows.go rename to vendor/src/github.com/docker/docker/pkg/system/filesys_windows.go diff --git a/vendor/github.com/docker/docker/pkg/system/lstat.go b/vendor/src/github.com/docker/docker/pkg/system/lstat.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/lstat.go rename to vendor/src/github.com/docker/docker/pkg/system/lstat.go diff --git a/vendor/github.com/docker/docker/pkg/system/lstat_windows.go b/vendor/src/github.com/docker/docker/pkg/system/lstat_windows.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/lstat_windows.go rename to vendor/src/github.com/docker/docker/pkg/system/lstat_windows.go diff --git a/vendor/github.com/docker/docker/pkg/system/meminfo.go b/vendor/src/github.com/docker/docker/pkg/system/meminfo.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/meminfo.go rename to vendor/src/github.com/docker/docker/pkg/system/meminfo.go diff --git a/vendor/github.com/docker/docker/pkg/system/meminfo_linux.go b/vendor/src/github.com/docker/docker/pkg/system/meminfo_linux.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/meminfo_linux.go rename to vendor/src/github.com/docker/docker/pkg/system/meminfo_linux.go diff --git a/vendor/github.com/docker/docker/pkg/system/meminfo_unsupported.go b/vendor/src/github.com/docker/docker/pkg/system/meminfo_unsupported.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/meminfo_unsupported.go rename to vendor/src/github.com/docker/docker/pkg/system/meminfo_unsupported.go diff --git a/vendor/github.com/docker/docker/pkg/system/meminfo_windows.go b/vendor/src/github.com/docker/docker/pkg/system/meminfo_windows.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/meminfo_windows.go rename to vendor/src/github.com/docker/docker/pkg/system/meminfo_windows.go diff --git a/vendor/github.com/docker/docker/pkg/system/mknod.go b/vendor/src/github.com/docker/docker/pkg/system/mknod.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/mknod.go rename to vendor/src/github.com/docker/docker/pkg/system/mknod.go diff --git a/vendor/github.com/docker/docker/pkg/system/mknod_windows.go b/vendor/src/github.com/docker/docker/pkg/system/mknod_windows.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/mknod_windows.go rename to vendor/src/github.com/docker/docker/pkg/system/mknod_windows.go diff --git a/vendor/github.com/docker/docker/pkg/system/path_unix.go b/vendor/src/github.com/docker/docker/pkg/system/path_unix.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/path_unix.go rename to vendor/src/github.com/docker/docker/pkg/system/path_unix.go diff --git a/vendor/github.com/docker/docker/pkg/system/path_windows.go b/vendor/src/github.com/docker/docker/pkg/system/path_windows.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/path_windows.go rename to vendor/src/github.com/docker/docker/pkg/system/path_windows.go diff --git a/vendor/github.com/docker/docker/pkg/system/stat.go b/vendor/src/github.com/docker/docker/pkg/system/stat.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/stat.go rename to vendor/src/github.com/docker/docker/pkg/system/stat.go diff --git a/vendor/github.com/docker/docker/pkg/system/stat_freebsd.go b/vendor/src/github.com/docker/docker/pkg/system/stat_freebsd.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/stat_freebsd.go rename to vendor/src/github.com/docker/docker/pkg/system/stat_freebsd.go diff --git a/vendor/github.com/docker/docker/pkg/system/stat_linux.go b/vendor/src/github.com/docker/docker/pkg/system/stat_linux.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/stat_linux.go rename to vendor/src/github.com/docker/docker/pkg/system/stat_linux.go diff --git a/vendor/github.com/docker/docker/pkg/system/stat_solaris.go b/vendor/src/github.com/docker/docker/pkg/system/stat_solaris.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/stat_solaris.go rename to vendor/src/github.com/docker/docker/pkg/system/stat_solaris.go diff --git a/vendor/github.com/docker/docker/pkg/system/stat_unsupported.go b/vendor/src/github.com/docker/docker/pkg/system/stat_unsupported.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/stat_unsupported.go rename to vendor/src/github.com/docker/docker/pkg/system/stat_unsupported.go diff --git a/vendor/github.com/docker/docker/pkg/system/stat_windows.go b/vendor/src/github.com/docker/docker/pkg/system/stat_windows.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/stat_windows.go rename to vendor/src/github.com/docker/docker/pkg/system/stat_windows.go diff --git a/vendor/github.com/docker/docker/pkg/system/syscall_unix.go b/vendor/src/github.com/docker/docker/pkg/system/syscall_unix.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/syscall_unix.go rename to vendor/src/github.com/docker/docker/pkg/system/syscall_unix.go diff --git a/vendor/github.com/docker/docker/pkg/system/syscall_windows.go b/vendor/src/github.com/docker/docker/pkg/system/syscall_windows.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/syscall_windows.go rename to vendor/src/github.com/docker/docker/pkg/system/syscall_windows.go diff --git a/vendor/github.com/docker/docker/pkg/system/umask.go b/vendor/src/github.com/docker/docker/pkg/system/umask.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/umask.go rename to vendor/src/github.com/docker/docker/pkg/system/umask.go diff --git a/vendor/github.com/docker/docker/pkg/system/umask_windows.go b/vendor/src/github.com/docker/docker/pkg/system/umask_windows.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/umask_windows.go rename to vendor/src/github.com/docker/docker/pkg/system/umask_windows.go diff --git a/vendor/github.com/docker/docker/pkg/system/utimes_darwin.go b/vendor/src/github.com/docker/docker/pkg/system/utimes_darwin.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/utimes_darwin.go rename to vendor/src/github.com/docker/docker/pkg/system/utimes_darwin.go diff --git a/vendor/github.com/docker/docker/pkg/system/utimes_freebsd.go b/vendor/src/github.com/docker/docker/pkg/system/utimes_freebsd.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/utimes_freebsd.go rename to vendor/src/github.com/docker/docker/pkg/system/utimes_freebsd.go diff --git a/vendor/github.com/docker/docker/pkg/system/utimes_linux.go b/vendor/src/github.com/docker/docker/pkg/system/utimes_linux.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/utimes_linux.go rename to vendor/src/github.com/docker/docker/pkg/system/utimes_linux.go diff --git a/vendor/github.com/docker/docker/pkg/system/utimes_unsupported.go b/vendor/src/github.com/docker/docker/pkg/system/utimes_unsupported.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/utimes_unsupported.go rename to vendor/src/github.com/docker/docker/pkg/system/utimes_unsupported.go diff --git a/vendor/github.com/docker/docker/pkg/system/xattrs_linux.go b/vendor/src/github.com/docker/docker/pkg/system/xattrs_linux.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/xattrs_linux.go rename to vendor/src/github.com/docker/docker/pkg/system/xattrs_linux.go diff --git a/vendor/github.com/docker/docker/pkg/system/xattrs_unsupported.go b/vendor/src/github.com/docker/docker/pkg/system/xattrs_unsupported.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/system/xattrs_unsupported.go rename to vendor/src/github.com/docker/docker/pkg/system/xattrs_unsupported.go diff --git a/vendor/github.com/docker/docker/pkg/term/ascii.go b/vendor/src/github.com/docker/docker/pkg/term/ascii.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/term/ascii.go rename to vendor/src/github.com/docker/docker/pkg/term/ascii.go diff --git a/vendor/github.com/docker/docker/pkg/term/tc_linux_cgo.go b/vendor/src/github.com/docker/docker/pkg/term/tc_linux_cgo.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/term/tc_linux_cgo.go rename to vendor/src/github.com/docker/docker/pkg/term/tc_linux_cgo.go diff --git a/vendor/github.com/docker/docker/pkg/term/tc_other.go b/vendor/src/github.com/docker/docker/pkg/term/tc_other.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/term/tc_other.go rename to vendor/src/github.com/docker/docker/pkg/term/tc_other.go diff --git a/vendor/github.com/docker/docker/pkg/term/term.go b/vendor/src/github.com/docker/docker/pkg/term/term.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/term/term.go rename to vendor/src/github.com/docker/docker/pkg/term/term.go diff --git a/vendor/github.com/docker/docker/pkg/term/term_windows.go b/vendor/src/github.com/docker/docker/pkg/term/term_windows.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/term/term_windows.go rename to vendor/src/github.com/docker/docker/pkg/term/term_windows.go diff --git a/vendor/github.com/docker/docker/pkg/term/termios_darwin.go b/vendor/src/github.com/docker/docker/pkg/term/termios_darwin.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/term/termios_darwin.go rename to vendor/src/github.com/docker/docker/pkg/term/termios_darwin.go diff --git a/vendor/github.com/docker/docker/pkg/term/termios_freebsd.go b/vendor/src/github.com/docker/docker/pkg/term/termios_freebsd.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/term/termios_freebsd.go rename to vendor/src/github.com/docker/docker/pkg/term/termios_freebsd.go diff --git a/vendor/github.com/docker/docker/pkg/term/termios_linux.go b/vendor/src/github.com/docker/docker/pkg/term/termios_linux.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/term/termios_linux.go rename to vendor/src/github.com/docker/docker/pkg/term/termios_linux.go diff --git a/vendor/github.com/docker/docker/pkg/term/windows/ansi_reader.go b/vendor/src/github.com/docker/docker/pkg/term/windows/ansi_reader.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/term/windows/ansi_reader.go rename to vendor/src/github.com/docker/docker/pkg/term/windows/ansi_reader.go diff --git a/vendor/github.com/docker/docker/pkg/term/windows/ansi_writer.go b/vendor/src/github.com/docker/docker/pkg/term/windows/ansi_writer.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/term/windows/ansi_writer.go rename to vendor/src/github.com/docker/docker/pkg/term/windows/ansi_writer.go diff --git a/vendor/github.com/docker/docker/pkg/term/windows/console.go b/vendor/src/github.com/docker/docker/pkg/term/windows/console.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/term/windows/console.go rename to vendor/src/github.com/docker/docker/pkg/term/windows/console.go diff --git a/vendor/github.com/docker/docker/pkg/term/windows/windows.go b/vendor/src/github.com/docker/docker/pkg/term/windows/windows.go similarity index 100% rename from vendor/github.com/docker/docker/pkg/term/windows/windows.go rename to vendor/src/github.com/docker/docker/pkg/term/windows/windows.go diff --git a/vendor/github.com/docker/go-units/CONTRIBUTING.md b/vendor/src/github.com/docker/go-units/CONTRIBUTING.md similarity index 100% rename from vendor/github.com/docker/go-units/CONTRIBUTING.md rename to vendor/src/github.com/docker/go-units/CONTRIBUTING.md diff --git a/vendor/github.com/docker/go-units/LICENSE.code b/vendor/src/github.com/docker/go-units/LICENSE.code similarity index 100% rename from vendor/github.com/docker/go-units/LICENSE.code rename to vendor/src/github.com/docker/go-units/LICENSE.code diff --git a/vendor/github.com/docker/go-units/LICENSE.docs b/vendor/src/github.com/docker/go-units/LICENSE.docs similarity index 100% rename from vendor/github.com/docker/go-units/LICENSE.docs rename to vendor/src/github.com/docker/go-units/LICENSE.docs diff --git a/vendor/github.com/docker/go-units/MAINTAINERS b/vendor/src/github.com/docker/go-units/MAINTAINERS similarity index 100% rename from vendor/github.com/docker/go-units/MAINTAINERS rename to vendor/src/github.com/docker/go-units/MAINTAINERS diff --git a/vendor/github.com/docker/go-units/README.md b/vendor/src/github.com/docker/go-units/README.md similarity index 100% rename from vendor/github.com/docker/go-units/README.md rename to vendor/src/github.com/docker/go-units/README.md diff --git a/vendor/github.com/docker/go-units/circle.yml b/vendor/src/github.com/docker/go-units/circle.yml similarity index 100% rename from vendor/github.com/docker/go-units/circle.yml rename to vendor/src/github.com/docker/go-units/circle.yml diff --git a/vendor/github.com/docker/go-units/duration.go b/vendor/src/github.com/docker/go-units/duration.go similarity index 100% rename from vendor/github.com/docker/go-units/duration.go rename to vendor/src/github.com/docker/go-units/duration.go diff --git a/vendor/github.com/docker/go-units/size.go b/vendor/src/github.com/docker/go-units/size.go similarity index 100% rename from vendor/github.com/docker/go-units/size.go rename to vendor/src/github.com/docker/go-units/size.go diff --git a/vendor/github.com/docker/go-units/ulimit.go b/vendor/src/github.com/docker/go-units/ulimit.go similarity index 100% rename from vendor/github.com/docker/go-units/ulimit.go rename to vendor/src/github.com/docker/go-units/ulimit.go diff --git a/vendor/github.com/godbus/dbus/CONTRIBUTING.md b/vendor/src/github.com/godbus/dbus/CONTRIBUTING.md similarity index 100% rename from vendor/github.com/godbus/dbus/CONTRIBUTING.md rename to vendor/src/github.com/godbus/dbus/CONTRIBUTING.md diff --git a/vendor/github.com/godbus/dbus/LICENSE b/vendor/src/github.com/godbus/dbus/LICENSE similarity index 100% rename from vendor/github.com/godbus/dbus/LICENSE rename to vendor/src/github.com/godbus/dbus/LICENSE diff --git a/vendor/github.com/godbus/dbus/MAINTAINERS b/vendor/src/github.com/godbus/dbus/MAINTAINERS similarity index 100% rename from vendor/github.com/godbus/dbus/MAINTAINERS rename to vendor/src/github.com/godbus/dbus/MAINTAINERS diff --git a/vendor/github.com/godbus/dbus/README.markdown b/vendor/src/github.com/godbus/dbus/README.markdown similarity index 100% rename from vendor/github.com/godbus/dbus/README.markdown rename to vendor/src/github.com/godbus/dbus/README.markdown diff --git a/vendor/github.com/godbus/dbus/auth.go b/vendor/src/github.com/godbus/dbus/auth.go similarity index 100% rename from vendor/github.com/godbus/dbus/auth.go rename to vendor/src/github.com/godbus/dbus/auth.go diff --git a/vendor/github.com/godbus/dbus/auth_external.go b/vendor/src/github.com/godbus/dbus/auth_external.go similarity index 100% rename from vendor/github.com/godbus/dbus/auth_external.go rename to vendor/src/github.com/godbus/dbus/auth_external.go diff --git a/vendor/github.com/godbus/dbus/auth_sha1.go b/vendor/src/github.com/godbus/dbus/auth_sha1.go similarity index 100% rename from vendor/github.com/godbus/dbus/auth_sha1.go rename to vendor/src/github.com/godbus/dbus/auth_sha1.go diff --git a/vendor/github.com/godbus/dbus/call.go b/vendor/src/github.com/godbus/dbus/call.go similarity index 100% rename from vendor/github.com/godbus/dbus/call.go rename to vendor/src/github.com/godbus/dbus/call.go diff --git a/vendor/github.com/godbus/dbus/conn.go b/vendor/src/github.com/godbus/dbus/conn.go similarity index 100% rename from vendor/github.com/godbus/dbus/conn.go rename to vendor/src/github.com/godbus/dbus/conn.go diff --git a/vendor/github.com/godbus/dbus/conn_darwin.go b/vendor/src/github.com/godbus/dbus/conn_darwin.go similarity index 100% rename from vendor/github.com/godbus/dbus/conn_darwin.go rename to vendor/src/github.com/godbus/dbus/conn_darwin.go diff --git a/vendor/github.com/godbus/dbus/conn_other.go b/vendor/src/github.com/godbus/dbus/conn_other.go similarity index 100% rename from vendor/github.com/godbus/dbus/conn_other.go rename to vendor/src/github.com/godbus/dbus/conn_other.go diff --git a/vendor/github.com/godbus/dbus/dbus.go b/vendor/src/github.com/godbus/dbus/dbus.go similarity index 100% rename from vendor/github.com/godbus/dbus/dbus.go rename to vendor/src/github.com/godbus/dbus/dbus.go diff --git a/vendor/github.com/godbus/dbus/decoder.go b/vendor/src/github.com/godbus/dbus/decoder.go similarity index 100% rename from vendor/github.com/godbus/dbus/decoder.go rename to vendor/src/github.com/godbus/dbus/decoder.go diff --git a/vendor/github.com/godbus/dbus/doc.go b/vendor/src/github.com/godbus/dbus/doc.go similarity index 100% rename from vendor/github.com/godbus/dbus/doc.go rename to vendor/src/github.com/godbus/dbus/doc.go diff --git a/vendor/github.com/godbus/dbus/encoder.go b/vendor/src/github.com/godbus/dbus/encoder.go similarity index 100% rename from vendor/github.com/godbus/dbus/encoder.go rename to vendor/src/github.com/godbus/dbus/encoder.go diff --git a/vendor/github.com/godbus/dbus/export.go b/vendor/src/github.com/godbus/dbus/export.go similarity index 100% rename from vendor/github.com/godbus/dbus/export.go rename to vendor/src/github.com/godbus/dbus/export.go diff --git a/vendor/github.com/godbus/dbus/homedir.go b/vendor/src/github.com/godbus/dbus/homedir.go similarity index 100% rename from vendor/github.com/godbus/dbus/homedir.go rename to vendor/src/github.com/godbus/dbus/homedir.go diff --git a/vendor/github.com/godbus/dbus/homedir_dynamic.go b/vendor/src/github.com/godbus/dbus/homedir_dynamic.go similarity index 100% rename from vendor/github.com/godbus/dbus/homedir_dynamic.go rename to vendor/src/github.com/godbus/dbus/homedir_dynamic.go diff --git a/vendor/github.com/godbus/dbus/homedir_static.go b/vendor/src/github.com/godbus/dbus/homedir_static.go similarity index 100% rename from vendor/github.com/godbus/dbus/homedir_static.go rename to vendor/src/github.com/godbus/dbus/homedir_static.go diff --git a/vendor/github.com/godbus/dbus/message.go b/vendor/src/github.com/godbus/dbus/message.go similarity index 100% rename from vendor/github.com/godbus/dbus/message.go rename to vendor/src/github.com/godbus/dbus/message.go diff --git a/vendor/github.com/godbus/dbus/object.go b/vendor/src/github.com/godbus/dbus/object.go similarity index 100% rename from vendor/github.com/godbus/dbus/object.go rename to vendor/src/github.com/godbus/dbus/object.go diff --git a/vendor/github.com/godbus/dbus/sig.go b/vendor/src/github.com/godbus/dbus/sig.go similarity index 100% rename from vendor/github.com/godbus/dbus/sig.go rename to vendor/src/github.com/godbus/dbus/sig.go diff --git a/vendor/github.com/godbus/dbus/transport_darwin.go b/vendor/src/github.com/godbus/dbus/transport_darwin.go similarity index 100% rename from vendor/github.com/godbus/dbus/transport_darwin.go rename to vendor/src/github.com/godbus/dbus/transport_darwin.go diff --git a/vendor/github.com/godbus/dbus/transport_generic.go b/vendor/src/github.com/godbus/dbus/transport_generic.go similarity index 100% rename from vendor/github.com/godbus/dbus/transport_generic.go rename to vendor/src/github.com/godbus/dbus/transport_generic.go diff --git a/vendor/github.com/godbus/dbus/transport_unix.go b/vendor/src/github.com/godbus/dbus/transport_unix.go similarity index 100% rename from vendor/github.com/godbus/dbus/transport_unix.go rename to vendor/src/github.com/godbus/dbus/transport_unix.go diff --git a/vendor/github.com/godbus/dbus/transport_unixcred_dragonfly.go b/vendor/src/github.com/godbus/dbus/transport_unixcred_dragonfly.go similarity index 100% rename from vendor/github.com/godbus/dbus/transport_unixcred_dragonfly.go rename to vendor/src/github.com/godbus/dbus/transport_unixcred_dragonfly.go diff --git a/vendor/github.com/godbus/dbus/transport_unixcred_linux.go b/vendor/src/github.com/godbus/dbus/transport_unixcred_linux.go similarity index 100% rename from vendor/github.com/godbus/dbus/transport_unixcred_linux.go rename to vendor/src/github.com/godbus/dbus/transport_unixcred_linux.go diff --git a/vendor/github.com/godbus/dbus/variant.go b/vendor/src/github.com/godbus/dbus/variant.go similarity index 100% rename from vendor/github.com/godbus/dbus/variant.go rename to vendor/src/github.com/godbus/dbus/variant.go diff --git a/vendor/github.com/godbus/dbus/variant_lexer.go b/vendor/src/github.com/godbus/dbus/variant_lexer.go similarity index 100% rename from vendor/github.com/godbus/dbus/variant_lexer.go rename to vendor/src/github.com/godbus/dbus/variant_lexer.go diff --git a/vendor/github.com/godbus/dbus/variant_parser.go b/vendor/src/github.com/godbus/dbus/variant_parser.go similarity index 100% rename from vendor/github.com/godbus/dbus/variant_parser.go rename to vendor/src/github.com/godbus/dbus/variant_parser.go diff --git a/vendor/github.com/golang/glog/LICENSE b/vendor/src/github.com/golang/glog/LICENSE similarity index 100% rename from vendor/github.com/golang/glog/LICENSE rename to vendor/src/github.com/golang/glog/LICENSE diff --git a/vendor/github.com/golang/protobuf/LICENSE b/vendor/src/github.com/golang/protobuf/LICENSE similarity index 100% rename from vendor/github.com/golang/protobuf/LICENSE rename to vendor/src/github.com/golang/protobuf/LICENSE diff --git a/vendor/github.com/golang/protobuf/proto/Makefile b/vendor/src/github.com/golang/protobuf/proto/Makefile similarity index 100% rename from vendor/github.com/golang/protobuf/proto/Makefile rename to vendor/src/github.com/golang/protobuf/proto/Makefile diff --git a/vendor/github.com/golang/protobuf/proto/clone.go b/vendor/src/github.com/golang/protobuf/proto/clone.go similarity index 100% rename from vendor/github.com/golang/protobuf/proto/clone.go rename to vendor/src/github.com/golang/protobuf/proto/clone.go diff --git a/vendor/github.com/golang/protobuf/proto/decode.go b/vendor/src/github.com/golang/protobuf/proto/decode.go similarity index 100% rename from vendor/github.com/golang/protobuf/proto/decode.go rename to vendor/src/github.com/golang/protobuf/proto/decode.go diff --git a/vendor/github.com/golang/protobuf/proto/encode.go b/vendor/src/github.com/golang/protobuf/proto/encode.go similarity index 100% rename from vendor/github.com/golang/protobuf/proto/encode.go rename to vendor/src/github.com/golang/protobuf/proto/encode.go diff --git a/vendor/github.com/golang/protobuf/proto/equal.go b/vendor/src/github.com/golang/protobuf/proto/equal.go similarity index 100% rename from vendor/github.com/golang/protobuf/proto/equal.go rename to vendor/src/github.com/golang/protobuf/proto/equal.go diff --git a/vendor/github.com/golang/protobuf/proto/extensions.go b/vendor/src/github.com/golang/protobuf/proto/extensions.go similarity index 100% rename from vendor/github.com/golang/protobuf/proto/extensions.go rename to vendor/src/github.com/golang/protobuf/proto/extensions.go diff --git a/vendor/github.com/golang/protobuf/proto/lib.go b/vendor/src/github.com/golang/protobuf/proto/lib.go similarity index 100% rename from vendor/github.com/golang/protobuf/proto/lib.go rename to vendor/src/github.com/golang/protobuf/proto/lib.go diff --git a/vendor/github.com/golang/protobuf/proto/message_set.go b/vendor/src/github.com/golang/protobuf/proto/message_set.go similarity index 100% rename from vendor/github.com/golang/protobuf/proto/message_set.go rename to vendor/src/github.com/golang/protobuf/proto/message_set.go diff --git a/vendor/github.com/golang/protobuf/proto/pointer_reflect.go b/vendor/src/github.com/golang/protobuf/proto/pointer_reflect.go similarity index 100% rename from vendor/github.com/golang/protobuf/proto/pointer_reflect.go rename to vendor/src/github.com/golang/protobuf/proto/pointer_reflect.go diff --git a/vendor/github.com/golang/protobuf/proto/pointer_unsafe.go b/vendor/src/github.com/golang/protobuf/proto/pointer_unsafe.go similarity index 100% rename from vendor/github.com/golang/protobuf/proto/pointer_unsafe.go rename to vendor/src/github.com/golang/protobuf/proto/pointer_unsafe.go diff --git a/vendor/github.com/golang/protobuf/proto/properties.go b/vendor/src/github.com/golang/protobuf/proto/properties.go similarity index 100% rename from vendor/github.com/golang/protobuf/proto/properties.go rename to vendor/src/github.com/golang/protobuf/proto/properties.go diff --git a/vendor/github.com/golang/protobuf/proto/text.go b/vendor/src/github.com/golang/protobuf/proto/text.go similarity index 100% rename from vendor/github.com/golang/protobuf/proto/text.go rename to vendor/src/github.com/golang/protobuf/proto/text.go diff --git a/vendor/github.com/golang/protobuf/proto/text_parser.go b/vendor/src/github.com/golang/protobuf/proto/text_parser.go similarity index 100% rename from vendor/github.com/golang/protobuf/proto/text_parser.go rename to vendor/src/github.com/golang/protobuf/proto/text_parser.go diff --git a/vendor/github.com/opencontainers/runc/.gitignore b/vendor/src/github.com/opencontainers/runc/.gitignore similarity index 100% rename from vendor/github.com/opencontainers/runc/.gitignore rename to vendor/src/github.com/opencontainers/runc/.gitignore diff --git a/vendor/github.com/opencontainers/runc/CONTRIBUTING.md b/vendor/src/github.com/opencontainers/runc/CONTRIBUTING.md similarity index 100% rename from vendor/github.com/opencontainers/runc/CONTRIBUTING.md rename to vendor/src/github.com/opencontainers/runc/CONTRIBUTING.md diff --git a/vendor/github.com/opencontainers/runc/Dockerfile b/vendor/src/github.com/opencontainers/runc/Dockerfile similarity index 100% rename from vendor/github.com/opencontainers/runc/Dockerfile rename to vendor/src/github.com/opencontainers/runc/Dockerfile diff --git a/vendor/github.com/opencontainers/runc/Godeps/Godeps.json b/vendor/src/github.com/opencontainers/runc/Godeps/Godeps.json similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/Godeps.json rename to vendor/src/github.com/opencontainers/runc/Godeps/Godeps.json diff --git a/vendor/github.com/opencontainers/runc/Godeps/Readme b/vendor/src/github.com/opencontainers/runc/Godeps/Readme similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/Readme rename to vendor/src/github.com/opencontainers/runc/Godeps/Readme diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/.gitignore b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/.gitignore similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/.gitignore rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/.gitignore diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_openbsd.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_openbsd.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_openbsd.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_openbsd.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/.travis.yml b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/.travis.yml similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/.travis.yml rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/.travis.yml diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/README.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/README.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/README.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/README.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/app.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/app.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/app.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/app.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/bash_autocomplete b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/bash_autocomplete similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/bash_autocomplete rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/bash_autocomplete diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/zsh_autocomplete b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/zsh_autocomplete similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/zsh_autocomplete rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/zsh_autocomplete diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/cli.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/cli.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/cli.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/cli.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/command.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/command.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/command.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/command.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/context.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/context.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/context.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/context.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/flag.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/flag.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/flag.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/flag.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/help.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/help.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/help.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/codegangsta/cli/help.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/files.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/files.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/files.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/files.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/listeners.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/listeners.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/listeners.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/listeners.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/packetconns.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/packetconns.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/packetconns.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/activation/packetconns.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/dbus.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/dbus.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/dbus.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/dbus.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/methods.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/methods.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/methods.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/methods.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/properties.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/properties.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/properties.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/properties.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/set.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/set.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/set.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/set.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/subscription.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/subscription.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/subscription.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/subscription.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/subscription_set.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/subscription_set.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/subscription_set.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/dbus/subscription_set.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/util/util.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/util/util.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/util/util.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/coreos/go-systemd/util/util.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/NOTICE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/NOTICE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/NOTICE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/NOTICE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/contrib/syntax/vim/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/contrib/syntax/vim/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/contrib/syntax/vim/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/contrib/syntax/vim/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/docs/project/images/red_notice.png b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/docs/project/images/red_notice.png similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/docs/project/images/red_notice.png rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/docs/project/images/red_notice.png diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags_freebsd.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags_freebsd.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags_freebsd.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags_freebsd.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags_unsupported.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags_unsupported.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/flags_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mount.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mount.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mount.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mount.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mounter_freebsd.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mounter_freebsd.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mounter_freebsd.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mounter_freebsd.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mounter_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mounter_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mounter_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mounter_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mounter_unsupported.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mounter_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mounter_unsupported.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mounter_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.APACHE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.APACHE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.APACHE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.APACHE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.BSD b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.BSD similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.BSD rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/LICENSE.BSD diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/README.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/README.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/README.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/README.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/fs.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/fs.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/fs.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/symlink/fs.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_linux_cgo.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_linux_cgo.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_linux_cgo.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_linux_cgo.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_other.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_other.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_other.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_other.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term_windows.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term_windows.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term_windows.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term_windows.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_darwin.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_darwin.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_darwin.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_darwin.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_freebsd.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_freebsd.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_freebsd.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_freebsd.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/console_windows.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/console_windows.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/console_windows.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/console_windows.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/term_emulator.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/term_emulator.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/term_emulator.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/pkg/term/winconsole/term_emulator.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/COPYING b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/COPYING similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/COPYING rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/BurntSushi/toml/COPYING diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Sirupsen/logrus/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Sirupsen/logrus/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Sirupsen/logrus/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/Sirupsen/logrus/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/armon/go-metrics/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/armon/go-metrics/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/armon/go-metrics/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/armon/go-metrics/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/distribution/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/distribution/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/distribution/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/distribution/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libkv/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libtrust/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libtrust/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libtrust/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/docker/libtrust/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/go-check/check/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/go-check/check/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/go-check/check/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/go-check/check/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/godbus/dbus/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/godbus/dbus/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/godbus/dbus/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/godbus/dbus/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/context/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/context/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/context/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/context/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/mux/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/mux/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/mux/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/gorilla/mux/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/kr/pty/License b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/kr/pty/License similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/kr/pty/License rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/kr/pty/License diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mattn/go-sqlite3/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mattn/go-sqlite3/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mattn/go-sqlite3/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mattn/go-sqlite3/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/microsoft/hcsshim/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/microsoft/hcsshim/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/microsoft/hcsshim/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/microsoft/hcsshim/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mistifyio/go-zfs/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mistifyio/go-zfs/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mistifyio/go-zfs/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/mistifyio/go-zfs/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/natefinch/npipe/LICENSE.txt b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/natefinch/npipe/LICENSE.txt similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/natefinch/npipe/LICENSE.txt rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/natefinch/npipe/LICENSE.txt diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netlink/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netlink/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netlink/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netlink/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netns/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netns/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netns/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netns/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/README.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/README.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/README.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/README.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/duration.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/duration.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/duration.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/duration.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/size.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/size.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/size.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/docker/go-units/size.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/CONTRIBUTING.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/CONTRIBUTING.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/CONTRIBUTING.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/CONTRIBUTING.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/MAINTAINERS b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/MAINTAINERS similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/MAINTAINERS rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/MAINTAINERS diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/README.markdown b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/README.markdown similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/README.markdown rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/README.markdown diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/auth.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/auth.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/auth.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/auth.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/auth_external.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/auth_external.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/auth_external.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/auth_external.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/auth_sha1.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/auth_sha1.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/auth_sha1.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/auth_sha1.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/call.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/call.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/call.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/call.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/conn.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/conn.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/conn.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/conn.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/conn_darwin.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/conn_darwin.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/conn_darwin.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/conn_darwin.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/conn_other.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/conn_other.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/conn_other.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/conn_other.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/dbus.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/dbus.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/dbus.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/dbus.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/decoder.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/decoder.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/decoder.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/decoder.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/doc.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/doc.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/doc.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/doc.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/encoder.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/encoder.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/encoder.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/encoder.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/export.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/export.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/export.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/export.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/homedir.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/homedir.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/homedir.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/homedir.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/homedir_dynamic.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/homedir_dynamic.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/homedir_dynamic.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/homedir_dynamic.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/homedir_static.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/homedir_static.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/homedir_static.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/homedir_static.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/introspect/call.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/introspect/call.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/introspect/call.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/introspect/call.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/introspect/introspect.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/introspect/introspect.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/introspect/introspect.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/introspect/introspect.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/introspect/introspectable.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/introspect/introspectable.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/introspect/introspectable.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/introspect/introspectable.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/message.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/message.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/message.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/message.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/object.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/object.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/object.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/object.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/prop/prop.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/prop/prop.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/prop/prop.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/prop/prop.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/sig.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/sig.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/sig.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/sig.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_darwin.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_darwin.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_darwin.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_darwin.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_generic.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_generic.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_generic.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_generic.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_unix.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_unix.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_unix.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_unix.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_unixcred_dragonfly.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_unixcred_dragonfly.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_unixcred_dragonfly.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_unixcred_dragonfly.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_unixcred_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_unixcred_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_unixcred_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/transport_unixcred_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/variant.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/variant.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/variant.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/variant.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/variant_lexer.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/variant_lexer.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/variant_lexer.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/variant_lexer.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/variant_parser.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/variant_parser.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/variant_parser.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/godbus/dbus/variant_parser.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/Makefile b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/Makefile similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/Makefile rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/Makefile diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/clone.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/clone.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/clone.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/clone.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/decode.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/decode.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/decode.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/decode.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/encode.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/encode.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/encode.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/encode.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/equal.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/equal.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/equal.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/equal.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/extensions.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/extensions.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/extensions.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/extensions.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/lib.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/lib.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/lib.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/lib.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/message_set.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/message_set.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/message_set.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/message_set.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/pointer_reflect.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/pointer_reflect.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/pointer_reflect.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/pointer_reflect.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/pointer_unsafe.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/pointer_unsafe.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/pointer_unsafe.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/pointer_unsafe.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/properties.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/properties.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/properties.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/properties.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/proto3_proto/Makefile b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/proto3_proto/Makefile similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/proto3_proto/Makefile rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/proto3_proto/Makefile diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/proto3_proto/proto3.proto b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/proto3_proto/proto3.proto similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/proto3_proto/proto3.proto rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/proto3_proto/proto3.proto diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/text.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/text.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/text.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/text.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/text_parser.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/text_parser.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/text_parser.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/golang/protobuf/proto/text_parser.go diff --git a/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/runc b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/runc new file mode 120000 index 0000000..369e253 --- /dev/null +++ b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/runc @@ -0,0 +1 @@ +/home/michael/development/gocode/src/github.com/opencontainers/runc \ No newline at end of file diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/.travis.yml b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/.travis.yml similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/.travis.yml rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/.travis.yml diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/ChangeLog b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/ChangeLog similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/ChangeLog rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/ChangeLog diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/MAINTAINERS b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/MAINTAINERS similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/MAINTAINERS rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/MAINTAINERS diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/Makefile b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/Makefile similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/Makefile rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/Makefile diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/README.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/README.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/README.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/README.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/ROADMAP.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/ROADMAP.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/ROADMAP.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/ROADMAP.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/bundle.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/bundle.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/bundle.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/bundle.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/code-of-conduct.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/code-of-conduct.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/code-of-conduct.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/code-of-conduct.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/config-linux.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/config-linux.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/config-linux.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/config-linux.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/config.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/config.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/config.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/config.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/glossary.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/glossary.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/glossary.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/glossary.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/implementations.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/implementations.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/implementations.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/implementations.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/principles.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/principles.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/principles.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/principles.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/project.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/project.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/project.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/project.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/runtime-linux.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/runtime-linux.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/runtime-linux.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/runtime-linux.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/runtime.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/runtime.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/runtime.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/runtime.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/specs-go/config.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/specs-go/config.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/specs-go/config.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/specs-go/config.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/specs-go/state.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/specs-go/state.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/specs-go/state.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/specs-go/state.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/specs-go/version.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/specs-go/version.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/specs-go/version.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/specs-go/version.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/style.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/style.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/style.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/opencontainers/specs/style.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/README b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/README similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/README rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/README diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/seccomp.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/seccomp.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/seccomp.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/seccomp.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/seccomp_internal.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/seccomp_internal.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/seccomp_internal.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/seccomp/libseccomp-golang/seccomp_internal.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/capability.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/capability.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/capability.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/capability.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/capability_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/capability_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/capability_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/capability_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/capability_noop.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/capability_noop.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/capability_noop.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/capability_noop.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/enum.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/enum.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/enum.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/enum.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/enum_gen.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/enum_gen.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/enum_gen.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/enum_gen.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/enumgen/gen.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/enumgen/gen.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/enumgen/gen.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/enumgen/gen.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/syscall_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/syscall_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/syscall_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/syndtr/gocapability/capability/syscall_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/.travis.yml b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/.travis.yml similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/.travis.yml rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/.travis.yml diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/LICENSE b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/LICENSE rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/LICENSE diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/Makefile b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/Makefile similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/Makefile rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/Makefile diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/README.md b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/README.md similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/README.md rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/README.md diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/addr.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/addr.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/addr.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/addr.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/addr_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/addr_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/addr_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/addr_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/filter.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/filter.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/filter.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/filter.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/filter_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/filter_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/filter_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/filter_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/link.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/link.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/link.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/link.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/link_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/link_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/link_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/link_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/neigh.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/neigh.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/neigh.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/neigh.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/neigh_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/neigh_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/neigh_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/neigh_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/netlink.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/netlink.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/netlink.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/netlink.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/netlink_unspecified.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/netlink_unspecified.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/netlink_unspecified.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/netlink_unspecified.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/addr_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/addr_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/addr_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/addr_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/link_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/link_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/link_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/link_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/nl_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/nl_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/nl_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/nl_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/route_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/route_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/route_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/route_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/tc_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/tc_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/tc_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/tc_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/xfrm_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/xfrm_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/xfrm_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/xfrm_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/xfrm_policy_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/xfrm_policy_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/xfrm_policy_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/xfrm_policy_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/xfrm_state_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/xfrm_state_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/xfrm_state_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/nl/xfrm_state_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/protinfo.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/protinfo.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/protinfo.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/protinfo.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/protinfo_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/protinfo_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/protinfo_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/protinfo_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/qdisc.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/qdisc.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/qdisc.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/qdisc.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/qdisc_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/qdisc_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/qdisc_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/qdisc_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/route.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/route.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/route.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/route.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/route_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/route_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/route_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/route_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_policy.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_policy.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_policy.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_policy.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_policy_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_policy_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_policy_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_policy_linux.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_state.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_state.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_state.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_state.go diff --git a/vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_state_linux.go b/vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_state_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_state_linux.go rename to vendor/src/github.com/opencontainers/runc/Godeps/_workspace/src/github.com/vishvananda/netlink/xfrm_state_linux.go diff --git a/vendor/github.com/opencontainers/runc/LICENSE b/vendor/src/github.com/opencontainers/runc/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/runc/LICENSE rename to vendor/src/github.com/opencontainers/runc/LICENSE diff --git a/vendor/github.com/opencontainers/runc/MAINTAINERS b/vendor/src/github.com/opencontainers/runc/MAINTAINERS similarity index 100% rename from vendor/github.com/opencontainers/runc/MAINTAINERS rename to vendor/src/github.com/opencontainers/runc/MAINTAINERS diff --git a/vendor/github.com/opencontainers/runc/MAINTAINERS_GUIDE.md b/vendor/src/github.com/opencontainers/runc/MAINTAINERS_GUIDE.md similarity index 100% rename from vendor/github.com/opencontainers/runc/MAINTAINERS_GUIDE.md rename to vendor/src/github.com/opencontainers/runc/MAINTAINERS_GUIDE.md diff --git a/vendor/github.com/opencontainers/runc/Makefile b/vendor/src/github.com/opencontainers/runc/Makefile similarity index 100% rename from vendor/github.com/opencontainers/runc/Makefile rename to vendor/src/github.com/opencontainers/runc/Makefile diff --git a/vendor/github.com/opencontainers/runc/NOTICE b/vendor/src/github.com/opencontainers/runc/NOTICE similarity index 100% rename from vendor/github.com/opencontainers/runc/NOTICE rename to vendor/src/github.com/opencontainers/runc/NOTICE diff --git a/vendor/github.com/opencontainers/runc/PRINCIPLES.md b/vendor/src/github.com/opencontainers/runc/PRINCIPLES.md similarity index 100% rename from vendor/github.com/opencontainers/runc/PRINCIPLES.md rename to vendor/src/github.com/opencontainers/runc/PRINCIPLES.md diff --git a/vendor/github.com/opencontainers/runc/README.md b/vendor/src/github.com/opencontainers/runc/README.md similarity index 100% rename from vendor/github.com/opencontainers/runc/README.md rename to vendor/src/github.com/opencontainers/runc/README.md diff --git a/vendor/github.com/opencontainers/runc/checkpoint.go b/vendor/src/github.com/opencontainers/runc/checkpoint.go similarity index 100% rename from vendor/github.com/opencontainers/runc/checkpoint.go rename to vendor/src/github.com/opencontainers/runc/checkpoint.go diff --git a/vendor/github.com/opencontainers/runc/delete.go b/vendor/src/github.com/opencontainers/runc/delete.go similarity index 100% rename from vendor/github.com/opencontainers/runc/delete.go rename to vendor/src/github.com/opencontainers/runc/delete.go diff --git a/vendor/github.com/opencontainers/runc/events.go b/vendor/src/github.com/opencontainers/runc/events.go similarity index 100% rename from vendor/github.com/opencontainers/runc/events.go rename to vendor/src/github.com/opencontainers/runc/events.go diff --git a/vendor/github.com/opencontainers/runc/exec.go b/vendor/src/github.com/opencontainers/runc/exec.go similarity index 100% rename from vendor/github.com/opencontainers/runc/exec.go rename to vendor/src/github.com/opencontainers/runc/exec.go diff --git a/vendor/github.com/opencontainers/runc/kill.go b/vendor/src/github.com/opencontainers/runc/kill.go similarity index 100% rename from vendor/github.com/opencontainers/runc/kill.go rename to vendor/src/github.com/opencontainers/runc/kill.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/README.md b/vendor/src/github.com/opencontainers/runc/libcontainer/README.md similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/README.md rename to vendor/src/github.com/opencontainers/runc/libcontainer/README.md diff --git a/vendor/github.com/opencontainers/runc/libcontainer/SPEC.md b/vendor/src/github.com/opencontainers/runc/libcontainer/SPEC.md similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/SPEC.md rename to vendor/src/github.com/opencontainers/runc/libcontainer/SPEC.md diff --git a/vendor/github.com/opencontainers/runc/libcontainer/apparmor/apparmor.go b/vendor/src/github.com/opencontainers/runc/libcontainer/apparmor/apparmor.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/apparmor/apparmor.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/apparmor/apparmor.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/apparmor/apparmor_disabled.go b/vendor/src/github.com/opencontainers/runc/libcontainer/apparmor/apparmor_disabled.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/apparmor/apparmor_disabled.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/apparmor/apparmor_disabled.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/capabilities_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/capabilities_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/capabilities_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/capabilities_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/cgroups.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/cgroups.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/cgroups.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/cgroups.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_unsupported.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_unsupported.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/cgroups_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/apply_raw.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/apply_raw.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/apply_raw.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/apply_raw.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/apply_raw_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/apply_raw_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/apply_raw_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/apply_raw_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/blkio.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/blkio.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/blkio.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/blkio.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/blkio_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/blkio_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/blkio_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/blkio_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpu.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpu.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpu.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpu.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpu_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpu_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpu_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpu_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpuacct.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpuacct.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpuacct.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpuacct.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpuset.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpuset.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpuset.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpuset.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpuset_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpuset_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpuset_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/cpuset_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/devices.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/devices.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/devices.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/devices.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/devices_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/devices_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/devices_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/devices_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/freezer.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/freezer.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/freezer.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/freezer.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/freezer_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/freezer_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/freezer_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/freezer_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/fs_unsupported.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/fs_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/fs_unsupported.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/fs_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/hugetlb.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/hugetlb.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/hugetlb.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/hugetlb.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/hugetlb_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/hugetlb_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/hugetlb_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/hugetlb_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/memory.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/memory.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/memory.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/memory.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/memory_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/memory_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/memory_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/memory_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/name.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/name.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/name.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/name.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_cls.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_cls.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_cls.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_cls.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_cls_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_cls_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_cls_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_cls_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_prio.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_prio.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_prio.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_prio.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_prio_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_prio_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_prio_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/net_prio_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/perf_event.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/perf_event.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/perf_event.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/perf_event.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/pids.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/pids.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/pids.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/pids.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/pids_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/pids_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/pids_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/pids_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/stats_util_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/stats_util_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/stats_util_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/stats_util_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/util_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/util_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/util_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/util_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/utils.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/utils.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/utils.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/utils.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/utils_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/utils_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/fs/utils_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/fs/utils_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/stats.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/stats.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/stats.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/stats.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/systemd/apply_nosystemd.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/systemd/apply_nosystemd.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/systemd/apply_nosystemd.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/systemd/apply_nosystemd.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/systemd/apply_systemd.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/systemd/apply_systemd.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/systemd/apply_systemd.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/systemd/apply_systemd.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/utils.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/utils.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/utils_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/cgroups/utils_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/cgroups/utils_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/compat_1.5_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/compat_1.5_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/compat_1.5_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/compat_1.5_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/blkio_device.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/blkio_device.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/blkio_device.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/blkio_device.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/cgroup_unix.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/cgroup_unix.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/cgroup_unix.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/cgroup_unix.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/cgroup_unsupported.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/cgroup_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/cgroup_unsupported.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/cgroup_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/cgroup_windows.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/cgroup_windows.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/cgroup_windows.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/cgroup_windows.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/config.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/config.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/config.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/config.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/config_unix.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/config_unix.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/config_unix.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/config_unix.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/config_unix_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/config_unix_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/config_unix_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/config_unix_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/config_windows_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/config_windows_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/config_windows_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/config_windows_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/device.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/device.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/device.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/device.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/device_defaults.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/device_defaults.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/device_defaults.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/device_defaults.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/hugepage_limit.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/hugepage_limit.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/hugepage_limit.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/hugepage_limit.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/interface_priority_map.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/interface_priority_map.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/interface_priority_map.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/interface_priority_map.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/mount.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/mount.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/mount.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/mount.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/namespaces.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/namespaces.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/namespaces.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/namespaces.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/namespaces_syscall.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/namespaces_syscall.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/namespaces_syscall.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/namespaces_syscall.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/namespaces_syscall_unsupported.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/namespaces_syscall_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/namespaces_syscall_unsupported.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/namespaces_syscall_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/namespaces_unix.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/namespaces_unix.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/namespaces_unix.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/namespaces_unix.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/namespaces_unsupported.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/namespaces_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/namespaces_unsupported.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/namespaces_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/network.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/network.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/network.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/network.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/configs/validate/config.go b/vendor/src/github.com/opencontainers/runc/libcontainer/configs/validate/config.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/configs/validate/config.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/configs/validate/config.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/console.go b/vendor/src/github.com/opencontainers/runc/libcontainer/console.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/console.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/console.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/console_freebsd.go b/vendor/src/github.com/opencontainers/runc/libcontainer/console_freebsd.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/console_freebsd.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/console_freebsd.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/console_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/console_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/console_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/console_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/console_windows.go b/vendor/src/github.com/opencontainers/runc/libcontainer/console_windows.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/console_windows.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/console_windows.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/container.go b/vendor/src/github.com/opencontainers/runc/libcontainer/container.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/container.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/container.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/container_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/container_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/container_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/container_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/container_linux_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/container_linux_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/container_linux_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/container_linux_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/container_windows.go b/vendor/src/github.com/opencontainers/runc/libcontainer/container_windows.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/container_windows.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/container_windows.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/criu_opts_unix.go b/vendor/src/github.com/opencontainers/runc/libcontainer/criu_opts_unix.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/criu_opts_unix.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/criu_opts_unix.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/criu_opts_windows.go b/vendor/src/github.com/opencontainers/runc/libcontainer/criu_opts_windows.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/criu_opts_windows.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/criu_opts_windows.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/criurpc/Makefile b/vendor/src/github.com/opencontainers/runc/libcontainer/criurpc/Makefile similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/criurpc/Makefile rename to vendor/src/github.com/opencontainers/runc/libcontainer/criurpc/Makefile diff --git a/vendor/github.com/opencontainers/runc/libcontainer/criurpc/criurpc.pb.go b/vendor/src/github.com/opencontainers/runc/libcontainer/criurpc/criurpc.pb.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/criurpc/criurpc.pb.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/criurpc/criurpc.pb.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/criurpc/criurpc.proto b/vendor/src/github.com/opencontainers/runc/libcontainer/criurpc/criurpc.proto similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/criurpc/criurpc.proto rename to vendor/src/github.com/opencontainers/runc/libcontainer/criurpc/criurpc.proto diff --git a/vendor/github.com/opencontainers/runc/libcontainer/devices/devices_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/devices/devices_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/devices/devices_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/devices/devices_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/devices/devices_unix.go b/vendor/src/github.com/opencontainers/runc/libcontainer/devices/devices_unix.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/devices/devices_unix.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/devices/devices_unix.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/devices/devices_unsupported.go b/vendor/src/github.com/opencontainers/runc/libcontainer/devices/devices_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/devices/devices_unsupported.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/devices/devices_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/devices/number.go b/vendor/src/github.com/opencontainers/runc/libcontainer/devices/number.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/devices/number.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/devices/number.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/error.go b/vendor/src/github.com/opencontainers/runc/libcontainer/error.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/error.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/error.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/error_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/error_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/error_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/error_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/factory.go b/vendor/src/github.com/opencontainers/runc/libcontainer/factory.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/factory.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/factory.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/factory_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/factory_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/factory_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/factory_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/factory_linux_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/factory_linux_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/factory_linux_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/factory_linux_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/generic_error.go b/vendor/src/github.com/opencontainers/runc/libcontainer/generic_error.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/generic_error.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/generic_error.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/generic_error_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/generic_error_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/generic_error_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/generic_error_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/init_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/init_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/init_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/init_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/integration/checkpoint_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/integration/checkpoint_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/integration/checkpoint_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/integration/checkpoint_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/integration/doc.go b/vendor/src/github.com/opencontainers/runc/libcontainer/integration/doc.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/integration/doc.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/integration/doc.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/integration/exec_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/integration/exec_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/integration/exec_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/integration/exec_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/integration/execin_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/integration/execin_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/integration/execin_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/integration/execin_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/integration/init_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/integration/init_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/integration/init_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/integration/init_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/integration/seccomp_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/integration/seccomp_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/integration/seccomp_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/integration/seccomp_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/integration/template_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/integration/template_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/integration/template_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/integration/template_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/integration/utils_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/integration/utils_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/integration/utils_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/integration/utils_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/keys/keyctl.go b/vendor/src/github.com/opencontainers/runc/libcontainer/keys/keyctl.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/keys/keyctl.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/keys/keyctl.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/label/label.go b/vendor/src/github.com/opencontainers/runc/libcontainer/label/label.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/label/label.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/label/label.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/label/label_selinux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/label/label_selinux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/label/label_selinux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/label/label_selinux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/label/label_selinux_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/label/label_selinux_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/label/label_selinux_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/label/label_selinux_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/message_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/message_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/message_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/message_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/network_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/network_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/network_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/network_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/notify_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/notify_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/notify_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/notify_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/notify_linux_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/notify_linux_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/notify_linux_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/notify_linux_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/nsenter/README.md b/vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/README.md similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/nsenter/README.md rename to vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/README.md diff --git a/vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsenter.go b/vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/nsenter.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsenter.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/nsenter.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsenter_gccgo.go b/vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/nsenter_gccgo.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsenter_gccgo.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/nsenter_gccgo.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsenter_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/nsenter_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsenter_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/nsenter_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsenter_unsupported.go b/vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/nsenter_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsenter_unsupported.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/nsenter_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsexec.c b/vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/nsexec.c similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsexec.c rename to vendor/src/github.com/opencontainers/runc/libcontainer/nsenter/nsexec.c diff --git a/vendor/github.com/opencontainers/runc/libcontainer/process.go b/vendor/src/github.com/opencontainers/runc/libcontainer/process.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/process.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/process.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/process_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/process_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/process_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/process_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/restored_process.go b/vendor/src/github.com/opencontainers/runc/libcontainer/restored_process.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/restored_process.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/restored_process.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/rootfs_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/rootfs_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/rootfs_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/rootfs_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/rootfs_linux_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/rootfs_linux_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/rootfs_linux_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/rootfs_linux_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/seccomp/config.go b/vendor/src/github.com/opencontainers/runc/libcontainer/seccomp/config.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/seccomp/config.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/seccomp/config.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/seccomp/fixtures/proc_self_status b/vendor/src/github.com/opencontainers/runc/libcontainer/seccomp/fixtures/proc_self_status similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/seccomp/fixtures/proc_self_status rename to vendor/src/github.com/opencontainers/runc/libcontainer/seccomp/fixtures/proc_self_status diff --git a/vendor/github.com/opencontainers/runc/libcontainer/seccomp/seccomp_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/seccomp/seccomp_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/seccomp/seccomp_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/seccomp/seccomp_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/seccomp/seccomp_linux_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/seccomp/seccomp_linux_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/seccomp/seccomp_linux_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/seccomp/seccomp_linux_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/seccomp/seccomp_unsupported.go b/vendor/src/github.com/opencontainers/runc/libcontainer/seccomp/seccomp_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/seccomp/seccomp_unsupported.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/seccomp/seccomp_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/selinux/selinux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/selinux/selinux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/selinux/selinux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/selinux/selinux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/selinux/selinux_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/selinux/selinux_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/selinux/selinux_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/selinux/selinux_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/setgroups_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/setgroups_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/setgroups_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/setgroups_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/setns_init_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/setns_init_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/setns_init_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/setns_init_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/stacktrace/capture.go b/vendor/src/github.com/opencontainers/runc/libcontainer/stacktrace/capture.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/stacktrace/capture.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/stacktrace/capture.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/stacktrace/capture_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/stacktrace/capture_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/stacktrace/capture_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/stacktrace/capture_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/stacktrace/frame.go b/vendor/src/github.com/opencontainers/runc/libcontainer/stacktrace/frame.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/stacktrace/frame.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/stacktrace/frame.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/stacktrace/frame_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/stacktrace/frame_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/stacktrace/frame_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/stacktrace/frame_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/stacktrace/stacktrace.go b/vendor/src/github.com/opencontainers/runc/libcontainer/stacktrace/stacktrace.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/stacktrace/stacktrace.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/stacktrace/stacktrace.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/standard_init_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/standard_init_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/standard_init_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/standard_init_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/state_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/state_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/state_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/state_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/state_linux_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/state_linux_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/state_linux_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/state_linux_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/stats.go b/vendor/src/github.com/opencontainers/runc/libcontainer/stats.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/stats.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/stats.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/stats_freebsd.go b/vendor/src/github.com/opencontainers/runc/libcontainer/stats_freebsd.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/stats_freebsd.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/stats_freebsd.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/stats_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/stats_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/stats_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/stats_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/stats_windows.go b/vendor/src/github.com/opencontainers/runc/libcontainer/stats_windows.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/stats_windows.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/stats_windows.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/system/linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/system/linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/system/linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/system/linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/system/proc.go b/vendor/src/github.com/opencontainers/runc/libcontainer/system/proc.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/system/proc.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/system/proc.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/system/setns_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/system/setns_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/system/setns_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/system/setns_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/system/syscall_linux_386.go b/vendor/src/github.com/opencontainers/runc/libcontainer/system/syscall_linux_386.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/system/syscall_linux_386.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/system/syscall_linux_386.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/system/syscall_linux_64.go b/vendor/src/github.com/opencontainers/runc/libcontainer/system/syscall_linux_64.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/system/syscall_linux_64.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/system/syscall_linux_64.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/system/syscall_linux_arm.go b/vendor/src/github.com/opencontainers/runc/libcontainer/system/syscall_linux_arm.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/system/syscall_linux_arm.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/system/syscall_linux_arm.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/system/sysconfig.go b/vendor/src/github.com/opencontainers/runc/libcontainer/system/sysconfig.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/system/sysconfig.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/system/sysconfig.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/system/sysconfig_notcgo.go b/vendor/src/github.com/opencontainers/runc/libcontainer/system/sysconfig_notcgo.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/system/sysconfig_notcgo.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/system/sysconfig_notcgo.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/system/unsupported.go b/vendor/src/github.com/opencontainers/runc/libcontainer/system/unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/system/unsupported.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/system/unsupported.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/system/xattrs_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/system/xattrs_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/system/xattrs_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/system/xattrs_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS b/vendor/src/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS rename to vendor/src/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS diff --git a/vendor/github.com/opencontainers/runc/libcontainer/user/lookup.go b/vendor/src/github.com/opencontainers/runc/libcontainer/user/lookup.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/user/lookup.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/user/lookup.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go b/vendor/src/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go b/vendor/src/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/user/user.go b/vendor/src/github.com/opencontainers/runc/libcontainer/user/user.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/user/user.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/user/user.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/user/user_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/user/user_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/user/user_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/user/user_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/utils/utils.go b/vendor/src/github.com/opencontainers/runc/libcontainer/utils/utils.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/utils/utils.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/utils/utils.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/utils/utils_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/utils/utils_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/utils/utils_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/utils/utils_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/utils/utils_unix.go b/vendor/src/github.com/opencontainers/runc/libcontainer/utils/utils_unix.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/utils/utils_unix.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/utils/utils_unix.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/xattr/errors.go b/vendor/src/github.com/opencontainers/runc/libcontainer/xattr/errors.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/xattr/errors.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/xattr/errors.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/xattr/xattr_linux.go b/vendor/src/github.com/opencontainers/runc/libcontainer/xattr/xattr_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/xattr/xattr_linux.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/xattr/xattr_linux.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/xattr/xattr_test.go b/vendor/src/github.com/opencontainers/runc/libcontainer/xattr/xattr_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/xattr/xattr_test.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/xattr/xattr_test.go diff --git a/vendor/github.com/opencontainers/runc/libcontainer/xattr/xattr_unsupported.go b/vendor/src/github.com/opencontainers/runc/libcontainer/xattr/xattr_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/libcontainer/xattr/xattr_unsupported.go rename to vendor/src/github.com/opencontainers/runc/libcontainer/xattr/xattr_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/list.go b/vendor/src/github.com/opencontainers/runc/list.go similarity index 100% rename from vendor/github.com/opencontainers/runc/list.go rename to vendor/src/github.com/opencontainers/runc/list.go diff --git a/vendor/github.com/opencontainers/runc/main.go b/vendor/src/github.com/opencontainers/runc/main.go similarity index 100% rename from vendor/github.com/opencontainers/runc/main.go rename to vendor/src/github.com/opencontainers/runc/main.go diff --git a/vendor/github.com/opencontainers/runc/main_unix.go b/vendor/src/github.com/opencontainers/runc/main_unix.go similarity index 100% rename from vendor/github.com/opencontainers/runc/main_unix.go rename to vendor/src/github.com/opencontainers/runc/main_unix.go diff --git a/vendor/github.com/opencontainers/runc/main_unsupported.go b/vendor/src/github.com/opencontainers/runc/main_unsupported.go similarity index 100% rename from vendor/github.com/opencontainers/runc/main_unsupported.go rename to vendor/src/github.com/opencontainers/runc/main_unsupported.go diff --git a/vendor/github.com/opencontainers/runc/man/README.md b/vendor/src/github.com/opencontainers/runc/man/README.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/README.md rename to vendor/src/github.com/opencontainers/runc/man/README.md diff --git a/vendor/github.com/opencontainers/runc/man/md2man-all.sh b/vendor/src/github.com/opencontainers/runc/man/md2man-all.sh similarity index 100% rename from vendor/github.com/opencontainers/runc/man/md2man-all.sh rename to vendor/src/github.com/opencontainers/runc/man/md2man-all.sh diff --git a/vendor/github.com/opencontainers/runc/man/runc-checkpoint.8.md b/vendor/src/github.com/opencontainers/runc/man/runc-checkpoint.8.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/runc-checkpoint.8.md rename to vendor/src/github.com/opencontainers/runc/man/runc-checkpoint.8.md diff --git a/vendor/github.com/opencontainers/runc/man/runc-delete.8.md b/vendor/src/github.com/opencontainers/runc/man/runc-delete.8.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/runc-delete.8.md rename to vendor/src/github.com/opencontainers/runc/man/runc-delete.8.md diff --git a/vendor/github.com/opencontainers/runc/man/runc-events.8.md b/vendor/src/github.com/opencontainers/runc/man/runc-events.8.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/runc-events.8.md rename to vendor/src/github.com/opencontainers/runc/man/runc-events.8.md diff --git a/vendor/github.com/opencontainers/runc/man/runc-exec.8.md b/vendor/src/github.com/opencontainers/runc/man/runc-exec.8.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/runc-exec.8.md rename to vendor/src/github.com/opencontainers/runc/man/runc-exec.8.md diff --git a/vendor/github.com/opencontainers/runc/man/runc-kill.8.md b/vendor/src/github.com/opencontainers/runc/man/runc-kill.8.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/runc-kill.8.md rename to vendor/src/github.com/opencontainers/runc/man/runc-kill.8.md diff --git a/vendor/github.com/opencontainers/runc/man/runc-list.8.md b/vendor/src/github.com/opencontainers/runc/man/runc-list.8.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/runc-list.8.md rename to vendor/src/github.com/opencontainers/runc/man/runc-list.8.md diff --git a/vendor/github.com/opencontainers/runc/man/runc-pause.8.md b/vendor/src/github.com/opencontainers/runc/man/runc-pause.8.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/runc-pause.8.md rename to vendor/src/github.com/opencontainers/runc/man/runc-pause.8.md diff --git a/vendor/github.com/opencontainers/runc/man/runc-restore.8.md b/vendor/src/github.com/opencontainers/runc/man/runc-restore.8.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/runc-restore.8.md rename to vendor/src/github.com/opencontainers/runc/man/runc-restore.8.md diff --git a/vendor/github.com/opencontainers/runc/man/runc-resume.8.md b/vendor/src/github.com/opencontainers/runc/man/runc-resume.8.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/runc-resume.8.md rename to vendor/src/github.com/opencontainers/runc/man/runc-resume.8.md diff --git a/vendor/github.com/opencontainers/runc/man/runc-spec.8.md b/vendor/src/github.com/opencontainers/runc/man/runc-spec.8.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/runc-spec.8.md rename to vendor/src/github.com/opencontainers/runc/man/runc-spec.8.md diff --git a/vendor/github.com/opencontainers/runc/man/runc-start.8.md b/vendor/src/github.com/opencontainers/runc/man/runc-start.8.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/runc-start.8.md rename to vendor/src/github.com/opencontainers/runc/man/runc-start.8.md diff --git a/vendor/github.com/opencontainers/runc/man/runc-state.8.md b/vendor/src/github.com/opencontainers/runc/man/runc-state.8.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/runc-state.8.md rename to vendor/src/github.com/opencontainers/runc/man/runc-state.8.md diff --git a/vendor/github.com/opencontainers/runc/man/runc.8.md b/vendor/src/github.com/opencontainers/runc/man/runc.8.md similarity index 100% rename from vendor/github.com/opencontainers/runc/man/runc.8.md rename to vendor/src/github.com/opencontainers/runc/man/runc.8.md diff --git a/vendor/github.com/opencontainers/runc/pause.go b/vendor/src/github.com/opencontainers/runc/pause.go similarity index 100% rename from vendor/github.com/opencontainers/runc/pause.go rename to vendor/src/github.com/opencontainers/runc/pause.go diff --git a/vendor/github.com/opencontainers/runc/restore.go b/vendor/src/github.com/opencontainers/runc/restore.go similarity index 100% rename from vendor/github.com/opencontainers/runc/restore.go rename to vendor/src/github.com/opencontainers/runc/restore.go diff --git a/vendor/github.com/opencontainers/runc/rlimit_linux.go b/vendor/src/github.com/opencontainers/runc/rlimit_linux.go similarity index 100% rename from vendor/github.com/opencontainers/runc/rlimit_linux.go rename to vendor/src/github.com/opencontainers/runc/rlimit_linux.go diff --git a/vendor/src/github.com/opencontainers/runc/runc b/vendor/src/github.com/opencontainers/runc/runc new file mode 100755 index 0000000..4f7520a Binary files /dev/null and b/vendor/src/github.com/opencontainers/runc/runc differ diff --git a/vendor/github.com/opencontainers/runc/script/.validate b/vendor/src/github.com/opencontainers/runc/script/.validate similarity index 100% rename from vendor/github.com/opencontainers/runc/script/.validate rename to vendor/src/github.com/opencontainers/runc/script/.validate diff --git a/vendor/github.com/opencontainers/runc/script/test_Dockerfile b/vendor/src/github.com/opencontainers/runc/script/test_Dockerfile similarity index 100% rename from vendor/github.com/opencontainers/runc/script/test_Dockerfile rename to vendor/src/github.com/opencontainers/runc/script/test_Dockerfile diff --git a/vendor/github.com/opencontainers/runc/script/tmpmount b/vendor/src/github.com/opencontainers/runc/script/tmpmount similarity index 100% rename from vendor/github.com/opencontainers/runc/script/tmpmount rename to vendor/src/github.com/opencontainers/runc/script/tmpmount diff --git a/vendor/github.com/opencontainers/runc/script/validate-gofmt b/vendor/src/github.com/opencontainers/runc/script/validate-gofmt similarity index 100% rename from vendor/github.com/opencontainers/runc/script/validate-gofmt rename to vendor/src/github.com/opencontainers/runc/script/validate-gofmt diff --git a/vendor/github.com/opencontainers/runc/signals.go b/vendor/src/github.com/opencontainers/runc/signals.go similarity index 100% rename from vendor/github.com/opencontainers/runc/signals.go rename to vendor/src/github.com/opencontainers/runc/signals.go diff --git a/vendor/github.com/opencontainers/runc/spec.go b/vendor/src/github.com/opencontainers/runc/spec.go similarity index 100% rename from vendor/github.com/opencontainers/runc/spec.go rename to vendor/src/github.com/opencontainers/runc/spec.go diff --git a/vendor/github.com/opencontainers/runc/spec_test.go b/vendor/src/github.com/opencontainers/runc/spec_test.go similarity index 100% rename from vendor/github.com/opencontainers/runc/spec_test.go rename to vendor/src/github.com/opencontainers/runc/spec_test.go diff --git a/vendor/github.com/opencontainers/runc/start.go b/vendor/src/github.com/opencontainers/runc/start.go similarity index 100% rename from vendor/github.com/opencontainers/runc/start.go rename to vendor/src/github.com/opencontainers/runc/start.go diff --git a/vendor/github.com/opencontainers/runc/state.go b/vendor/src/github.com/opencontainers/runc/state.go similarity index 100% rename from vendor/github.com/opencontainers/runc/state.go rename to vendor/src/github.com/opencontainers/runc/state.go diff --git a/vendor/github.com/opencontainers/runc/tests/sniffTest b/vendor/src/github.com/opencontainers/runc/tests/sniffTest similarity index 100% rename from vendor/github.com/opencontainers/runc/tests/sniffTest rename to vendor/src/github.com/opencontainers/runc/tests/sniffTest diff --git a/vendor/github.com/opencontainers/runc/tty.go b/vendor/src/github.com/opencontainers/runc/tty.go similarity index 100% rename from vendor/github.com/opencontainers/runc/tty.go rename to vendor/src/github.com/opencontainers/runc/tty.go diff --git a/vendor/github.com/opencontainers/runc/utils.go b/vendor/src/github.com/opencontainers/runc/utils.go similarity index 100% rename from vendor/github.com/opencontainers/runc/utils.go rename to vendor/src/github.com/opencontainers/runc/utils.go diff --git a/vendor/github.com/opencontainers/specs/.travis.yml b/vendor/src/github.com/opencontainers/specs/.travis.yml similarity index 100% rename from vendor/github.com/opencontainers/specs/.travis.yml rename to vendor/src/github.com/opencontainers/specs/.travis.yml diff --git a/vendor/github.com/opencontainers/specs/ChangeLog b/vendor/src/github.com/opencontainers/specs/ChangeLog similarity index 100% rename from vendor/github.com/opencontainers/specs/ChangeLog rename to vendor/src/github.com/opencontainers/specs/ChangeLog diff --git a/vendor/github.com/opencontainers/specs/LICENSE b/vendor/src/github.com/opencontainers/specs/LICENSE similarity index 100% rename from vendor/github.com/opencontainers/specs/LICENSE rename to vendor/src/github.com/opencontainers/specs/LICENSE diff --git a/vendor/github.com/opencontainers/specs/MAINTAINERS b/vendor/src/github.com/opencontainers/specs/MAINTAINERS similarity index 100% rename from vendor/github.com/opencontainers/specs/MAINTAINERS rename to vendor/src/github.com/opencontainers/specs/MAINTAINERS diff --git a/vendor/github.com/opencontainers/specs/Makefile b/vendor/src/github.com/opencontainers/specs/Makefile similarity index 100% rename from vendor/github.com/opencontainers/specs/Makefile rename to vendor/src/github.com/opencontainers/specs/Makefile diff --git a/vendor/github.com/opencontainers/specs/README.md b/vendor/src/github.com/opencontainers/specs/README.md similarity index 100% rename from vendor/github.com/opencontainers/specs/README.md rename to vendor/src/github.com/opencontainers/specs/README.md diff --git a/vendor/github.com/opencontainers/specs/ROADMAP.md b/vendor/src/github.com/opencontainers/specs/ROADMAP.md similarity index 100% rename from vendor/github.com/opencontainers/specs/ROADMAP.md rename to vendor/src/github.com/opencontainers/specs/ROADMAP.md diff --git a/vendor/github.com/opencontainers/specs/bundle.md b/vendor/src/github.com/opencontainers/specs/bundle.md similarity index 100% rename from vendor/github.com/opencontainers/specs/bundle.md rename to vendor/src/github.com/opencontainers/specs/bundle.md diff --git a/vendor/github.com/opencontainers/specs/code-of-conduct.md b/vendor/src/github.com/opencontainers/specs/code-of-conduct.md similarity index 100% rename from vendor/github.com/opencontainers/specs/code-of-conduct.md rename to vendor/src/github.com/opencontainers/specs/code-of-conduct.md diff --git a/vendor/github.com/opencontainers/specs/config-linux.md b/vendor/src/github.com/opencontainers/specs/config-linux.md similarity index 100% rename from vendor/github.com/opencontainers/specs/config-linux.md rename to vendor/src/github.com/opencontainers/specs/config-linux.md diff --git a/vendor/github.com/opencontainers/specs/config.md b/vendor/src/github.com/opencontainers/specs/config.md similarity index 100% rename from vendor/github.com/opencontainers/specs/config.md rename to vendor/src/github.com/opencontainers/specs/config.md diff --git a/vendor/github.com/opencontainers/specs/glossary.md b/vendor/src/github.com/opencontainers/specs/glossary.md similarity index 100% rename from vendor/github.com/opencontainers/specs/glossary.md rename to vendor/src/github.com/opencontainers/specs/glossary.md diff --git a/vendor/github.com/opencontainers/specs/implementations.md b/vendor/src/github.com/opencontainers/specs/implementations.md similarity index 100% rename from vendor/github.com/opencontainers/specs/implementations.md rename to vendor/src/github.com/opencontainers/specs/implementations.md diff --git a/vendor/github.com/opencontainers/specs/principles.md b/vendor/src/github.com/opencontainers/specs/principles.md similarity index 100% rename from vendor/github.com/opencontainers/specs/principles.md rename to vendor/src/github.com/opencontainers/specs/principles.md diff --git a/vendor/github.com/opencontainers/specs/project.md b/vendor/src/github.com/opencontainers/specs/project.md similarity index 100% rename from vendor/github.com/opencontainers/specs/project.md rename to vendor/src/github.com/opencontainers/specs/project.md diff --git a/vendor/github.com/opencontainers/specs/runtime-linux.md b/vendor/src/github.com/opencontainers/specs/runtime-linux.md similarity index 100% rename from vendor/github.com/opencontainers/specs/runtime-linux.md rename to vendor/src/github.com/opencontainers/specs/runtime-linux.md diff --git a/vendor/github.com/opencontainers/specs/runtime.md b/vendor/src/github.com/opencontainers/specs/runtime.md similarity index 100% rename from vendor/github.com/opencontainers/specs/runtime.md rename to vendor/src/github.com/opencontainers/specs/runtime.md diff --git a/vendor/github.com/opencontainers/specs/schema/Makefile b/vendor/src/github.com/opencontainers/specs/schema/Makefile similarity index 100% rename from vendor/github.com/opencontainers/specs/schema/Makefile rename to vendor/src/github.com/opencontainers/specs/schema/Makefile diff --git a/vendor/github.com/opencontainers/specs/schema/defs-linux.json b/vendor/src/github.com/opencontainers/specs/schema/defs-linux.json similarity index 100% rename from vendor/github.com/opencontainers/specs/schema/defs-linux.json rename to vendor/src/github.com/opencontainers/specs/schema/defs-linux.json diff --git a/vendor/github.com/opencontainers/specs/schema/defs.json b/vendor/src/github.com/opencontainers/specs/schema/defs.json similarity index 100% rename from vendor/github.com/opencontainers/specs/schema/defs.json rename to vendor/src/github.com/opencontainers/specs/schema/defs.json diff --git a/vendor/github.com/opencontainers/specs/schema/schema-linux.json b/vendor/src/github.com/opencontainers/specs/schema/schema-linux.json similarity index 100% rename from vendor/github.com/opencontainers/specs/schema/schema-linux.json rename to vendor/src/github.com/opencontainers/specs/schema/schema-linux.json diff --git a/vendor/github.com/opencontainers/specs/schema/schema.json b/vendor/src/github.com/opencontainers/specs/schema/schema.json similarity index 100% rename from vendor/github.com/opencontainers/specs/schema/schema.json rename to vendor/src/github.com/opencontainers/specs/schema/schema.json diff --git a/vendor/github.com/opencontainers/specs/schema/validate.go b/vendor/src/github.com/opencontainers/specs/schema/validate.go similarity index 100% rename from vendor/github.com/opencontainers/specs/schema/validate.go rename to vendor/src/github.com/opencontainers/specs/schema/validate.go diff --git a/vendor/github.com/opencontainers/specs/specs-go/config.go b/vendor/src/github.com/opencontainers/specs/specs-go/config.go similarity index 100% rename from vendor/github.com/opencontainers/specs/specs-go/config.go rename to vendor/src/github.com/opencontainers/specs/specs-go/config.go diff --git a/vendor/github.com/opencontainers/specs/specs-go/state.go b/vendor/src/github.com/opencontainers/specs/specs-go/state.go similarity index 100% rename from vendor/github.com/opencontainers/specs/specs-go/state.go rename to vendor/src/github.com/opencontainers/specs/specs-go/state.go diff --git a/vendor/github.com/opencontainers/specs/specs-go/version.go b/vendor/src/github.com/opencontainers/specs/specs-go/version.go similarity index 100% rename from vendor/github.com/opencontainers/specs/specs-go/version.go rename to vendor/src/github.com/opencontainers/specs/specs-go/version.go diff --git a/vendor/github.com/opencontainers/specs/style.md b/vendor/src/github.com/opencontainers/specs/style.md similarity index 100% rename from vendor/github.com/opencontainers/specs/style.md rename to vendor/src/github.com/opencontainers/specs/style.md diff --git a/vendor/github.com/rcrowley/go-metrics/.gitignore b/vendor/src/github.com/rcrowley/go-metrics/.gitignore similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/.gitignore rename to vendor/src/github.com/rcrowley/go-metrics/.gitignore diff --git a/vendor/github.com/rcrowley/go-metrics/.travis.yml b/vendor/src/github.com/rcrowley/go-metrics/.travis.yml similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/.travis.yml rename to vendor/src/github.com/rcrowley/go-metrics/.travis.yml diff --git a/vendor/github.com/rcrowley/go-metrics/LICENSE b/vendor/src/github.com/rcrowley/go-metrics/LICENSE similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/LICENSE rename to vendor/src/github.com/rcrowley/go-metrics/LICENSE diff --git a/vendor/github.com/rcrowley/go-metrics/README.md b/vendor/src/github.com/rcrowley/go-metrics/README.md similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/README.md rename to vendor/src/github.com/rcrowley/go-metrics/README.md diff --git a/vendor/github.com/rcrowley/go-metrics/counter.go b/vendor/src/github.com/rcrowley/go-metrics/counter.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/counter.go rename to vendor/src/github.com/rcrowley/go-metrics/counter.go diff --git a/vendor/github.com/rcrowley/go-metrics/debug.go b/vendor/src/github.com/rcrowley/go-metrics/debug.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/debug.go rename to vendor/src/github.com/rcrowley/go-metrics/debug.go diff --git a/vendor/github.com/rcrowley/go-metrics/ewma.go b/vendor/src/github.com/rcrowley/go-metrics/ewma.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/ewma.go rename to vendor/src/github.com/rcrowley/go-metrics/ewma.go diff --git a/vendor/github.com/rcrowley/go-metrics/gauge.go b/vendor/src/github.com/rcrowley/go-metrics/gauge.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/gauge.go rename to vendor/src/github.com/rcrowley/go-metrics/gauge.go diff --git a/vendor/github.com/rcrowley/go-metrics/gauge_float64.go b/vendor/src/github.com/rcrowley/go-metrics/gauge_float64.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/gauge_float64.go rename to vendor/src/github.com/rcrowley/go-metrics/gauge_float64.go diff --git a/vendor/github.com/rcrowley/go-metrics/graphite.go b/vendor/src/github.com/rcrowley/go-metrics/graphite.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/graphite.go rename to vendor/src/github.com/rcrowley/go-metrics/graphite.go diff --git a/vendor/github.com/rcrowley/go-metrics/healthcheck.go b/vendor/src/github.com/rcrowley/go-metrics/healthcheck.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/healthcheck.go rename to vendor/src/github.com/rcrowley/go-metrics/healthcheck.go diff --git a/vendor/github.com/rcrowley/go-metrics/histogram.go b/vendor/src/github.com/rcrowley/go-metrics/histogram.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/histogram.go rename to vendor/src/github.com/rcrowley/go-metrics/histogram.go diff --git a/vendor/github.com/rcrowley/go-metrics/json.go b/vendor/src/github.com/rcrowley/go-metrics/json.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/json.go rename to vendor/src/github.com/rcrowley/go-metrics/json.go diff --git a/vendor/github.com/rcrowley/go-metrics/log.go b/vendor/src/github.com/rcrowley/go-metrics/log.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/log.go rename to vendor/src/github.com/rcrowley/go-metrics/log.go diff --git a/vendor/github.com/rcrowley/go-metrics/memory.md b/vendor/src/github.com/rcrowley/go-metrics/memory.md similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/memory.md rename to vendor/src/github.com/rcrowley/go-metrics/memory.md diff --git a/vendor/github.com/rcrowley/go-metrics/meter.go b/vendor/src/github.com/rcrowley/go-metrics/meter.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/meter.go rename to vendor/src/github.com/rcrowley/go-metrics/meter.go diff --git a/vendor/github.com/rcrowley/go-metrics/metrics.go b/vendor/src/github.com/rcrowley/go-metrics/metrics.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/metrics.go rename to vendor/src/github.com/rcrowley/go-metrics/metrics.go diff --git a/vendor/github.com/rcrowley/go-metrics/opentsdb.go b/vendor/src/github.com/rcrowley/go-metrics/opentsdb.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/opentsdb.go rename to vendor/src/github.com/rcrowley/go-metrics/opentsdb.go diff --git a/vendor/github.com/rcrowley/go-metrics/registry.go b/vendor/src/github.com/rcrowley/go-metrics/registry.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/registry.go rename to vendor/src/github.com/rcrowley/go-metrics/registry.go diff --git a/vendor/github.com/rcrowley/go-metrics/runtime.go b/vendor/src/github.com/rcrowley/go-metrics/runtime.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/runtime.go rename to vendor/src/github.com/rcrowley/go-metrics/runtime.go diff --git a/vendor/github.com/rcrowley/go-metrics/runtime_cgo.go b/vendor/src/github.com/rcrowley/go-metrics/runtime_cgo.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/runtime_cgo.go rename to vendor/src/github.com/rcrowley/go-metrics/runtime_cgo.go diff --git a/vendor/github.com/rcrowley/go-metrics/runtime_gccpufraction.go b/vendor/src/github.com/rcrowley/go-metrics/runtime_gccpufraction.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/runtime_gccpufraction.go rename to vendor/src/github.com/rcrowley/go-metrics/runtime_gccpufraction.go diff --git a/vendor/github.com/rcrowley/go-metrics/runtime_no_cgo.go b/vendor/src/github.com/rcrowley/go-metrics/runtime_no_cgo.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/runtime_no_cgo.go rename to vendor/src/github.com/rcrowley/go-metrics/runtime_no_cgo.go diff --git a/vendor/github.com/rcrowley/go-metrics/runtime_no_gccpufraction.go b/vendor/src/github.com/rcrowley/go-metrics/runtime_no_gccpufraction.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/runtime_no_gccpufraction.go rename to vendor/src/github.com/rcrowley/go-metrics/runtime_no_gccpufraction.go diff --git a/vendor/github.com/rcrowley/go-metrics/sample.go b/vendor/src/github.com/rcrowley/go-metrics/sample.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/sample.go rename to vendor/src/github.com/rcrowley/go-metrics/sample.go diff --git a/vendor/github.com/rcrowley/go-metrics/syslog.go b/vendor/src/github.com/rcrowley/go-metrics/syslog.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/syslog.go rename to vendor/src/github.com/rcrowley/go-metrics/syslog.go diff --git a/vendor/github.com/rcrowley/go-metrics/timer.go b/vendor/src/github.com/rcrowley/go-metrics/timer.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/timer.go rename to vendor/src/github.com/rcrowley/go-metrics/timer.go diff --git a/vendor/github.com/rcrowley/go-metrics/validate.sh b/vendor/src/github.com/rcrowley/go-metrics/validate.sh similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/validate.sh rename to vendor/src/github.com/rcrowley/go-metrics/validate.sh diff --git a/vendor/github.com/rcrowley/go-metrics/writer.go b/vendor/src/github.com/rcrowley/go-metrics/writer.go similarity index 100% rename from vendor/github.com/rcrowley/go-metrics/writer.go rename to vendor/src/github.com/rcrowley/go-metrics/writer.go diff --git a/vendor/github.com/satori/go.uuid/LICENSE b/vendor/src/github.com/satori/go.uuid/LICENSE similarity index 100% rename from vendor/github.com/satori/go.uuid/LICENSE rename to vendor/src/github.com/satori/go.uuid/LICENSE diff --git a/vendor/github.com/seccomp/libseccomp-golang/LICENSE b/vendor/src/github.com/seccomp/libseccomp-golang/LICENSE similarity index 100% rename from vendor/github.com/seccomp/libseccomp-golang/LICENSE rename to vendor/src/github.com/seccomp/libseccomp-golang/LICENSE diff --git a/vendor/github.com/seccomp/libseccomp-golang/README b/vendor/src/github.com/seccomp/libseccomp-golang/README similarity index 100% rename from vendor/github.com/seccomp/libseccomp-golang/README rename to vendor/src/github.com/seccomp/libseccomp-golang/README diff --git a/vendor/github.com/seccomp/libseccomp-golang/seccomp.go b/vendor/src/github.com/seccomp/libseccomp-golang/seccomp.go similarity index 100% rename from vendor/github.com/seccomp/libseccomp-golang/seccomp.go rename to vendor/src/github.com/seccomp/libseccomp-golang/seccomp.go diff --git a/vendor/github.com/seccomp/libseccomp-golang/seccomp_internal.go b/vendor/src/github.com/seccomp/libseccomp-golang/seccomp_internal.go similarity index 100% rename from vendor/github.com/seccomp/libseccomp-golang/seccomp_internal.go rename to vendor/src/github.com/seccomp/libseccomp-golang/seccomp_internal.go diff --git a/vendor/github.com/syndtr/gocapability/LICENSE b/vendor/src/github.com/syndtr/gocapability/LICENSE similarity index 100% rename from vendor/github.com/syndtr/gocapability/LICENSE rename to vendor/src/github.com/syndtr/gocapability/LICENSE diff --git a/vendor/github.com/syndtr/gocapability/capability/capability.go b/vendor/src/github.com/syndtr/gocapability/capability/capability.go similarity index 100% rename from vendor/github.com/syndtr/gocapability/capability/capability.go rename to vendor/src/github.com/syndtr/gocapability/capability/capability.go diff --git a/vendor/github.com/syndtr/gocapability/capability/capability_linux.go b/vendor/src/github.com/syndtr/gocapability/capability/capability_linux.go similarity index 100% rename from vendor/github.com/syndtr/gocapability/capability/capability_linux.go rename to vendor/src/github.com/syndtr/gocapability/capability/capability_linux.go diff --git a/vendor/github.com/syndtr/gocapability/capability/capability_noop.go b/vendor/src/github.com/syndtr/gocapability/capability/capability_noop.go similarity index 100% rename from vendor/github.com/syndtr/gocapability/capability/capability_noop.go rename to vendor/src/github.com/syndtr/gocapability/capability/capability_noop.go diff --git a/vendor/github.com/syndtr/gocapability/capability/enum.go b/vendor/src/github.com/syndtr/gocapability/capability/enum.go similarity index 100% rename from vendor/github.com/syndtr/gocapability/capability/enum.go rename to vendor/src/github.com/syndtr/gocapability/capability/enum.go diff --git a/vendor/github.com/syndtr/gocapability/capability/enum_gen.go b/vendor/src/github.com/syndtr/gocapability/capability/enum_gen.go similarity index 100% rename from vendor/github.com/syndtr/gocapability/capability/enum_gen.go rename to vendor/src/github.com/syndtr/gocapability/capability/enum_gen.go diff --git a/vendor/github.com/syndtr/gocapability/capability/syscall_linux.go b/vendor/src/github.com/syndtr/gocapability/capability/syscall_linux.go similarity index 100% rename from vendor/github.com/syndtr/gocapability/capability/syscall_linux.go rename to vendor/src/github.com/syndtr/gocapability/capability/syscall_linux.go diff --git a/vendor/github.com/vishvananda/netlink/.travis.yml b/vendor/src/github.com/vishvananda/netlink/.travis.yml similarity index 100% rename from vendor/github.com/vishvananda/netlink/.travis.yml rename to vendor/src/github.com/vishvananda/netlink/.travis.yml diff --git a/vendor/github.com/vishvananda/netlink/LICENSE b/vendor/src/github.com/vishvananda/netlink/LICENSE similarity index 100% rename from vendor/github.com/vishvananda/netlink/LICENSE rename to vendor/src/github.com/vishvananda/netlink/LICENSE diff --git a/vendor/github.com/vishvananda/netlink/Makefile b/vendor/src/github.com/vishvananda/netlink/Makefile similarity index 100% rename from vendor/github.com/vishvananda/netlink/Makefile rename to vendor/src/github.com/vishvananda/netlink/Makefile diff --git a/vendor/github.com/vishvananda/netlink/README.md b/vendor/src/github.com/vishvananda/netlink/README.md similarity index 100% rename from vendor/github.com/vishvananda/netlink/README.md rename to vendor/src/github.com/vishvananda/netlink/README.md diff --git a/vendor/github.com/vishvananda/netlink/addr.go b/vendor/src/github.com/vishvananda/netlink/addr.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/addr.go rename to vendor/src/github.com/vishvananda/netlink/addr.go diff --git a/vendor/github.com/vishvananda/netlink/addr_linux.go b/vendor/src/github.com/vishvananda/netlink/addr_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/addr_linux.go rename to vendor/src/github.com/vishvananda/netlink/addr_linux.go diff --git a/vendor/github.com/vishvananda/netlink/class.go b/vendor/src/github.com/vishvananda/netlink/class.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/class.go rename to vendor/src/github.com/vishvananda/netlink/class.go diff --git a/vendor/github.com/vishvananda/netlink/class_linux.go b/vendor/src/github.com/vishvananda/netlink/class_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/class_linux.go rename to vendor/src/github.com/vishvananda/netlink/class_linux.go diff --git a/vendor/github.com/vishvananda/netlink/filter.go b/vendor/src/github.com/vishvananda/netlink/filter.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/filter.go rename to vendor/src/github.com/vishvananda/netlink/filter.go diff --git a/vendor/github.com/vishvananda/netlink/filter_linux.go b/vendor/src/github.com/vishvananda/netlink/filter_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/filter_linux.go rename to vendor/src/github.com/vishvananda/netlink/filter_linux.go diff --git a/vendor/github.com/vishvananda/netlink/link.go b/vendor/src/github.com/vishvananda/netlink/link.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/link.go rename to vendor/src/github.com/vishvananda/netlink/link.go diff --git a/vendor/github.com/vishvananda/netlink/link_linux.go b/vendor/src/github.com/vishvananda/netlink/link_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/link_linux.go rename to vendor/src/github.com/vishvananda/netlink/link_linux.go diff --git a/vendor/github.com/vishvananda/netlink/link_tuntap_linux.go b/vendor/src/github.com/vishvananda/netlink/link_tuntap_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/link_tuntap_linux.go rename to vendor/src/github.com/vishvananda/netlink/link_tuntap_linux.go diff --git a/vendor/github.com/vishvananda/netlink/neigh.go b/vendor/src/github.com/vishvananda/netlink/neigh.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/neigh.go rename to vendor/src/github.com/vishvananda/netlink/neigh.go diff --git a/vendor/github.com/vishvananda/netlink/neigh_linux.go b/vendor/src/github.com/vishvananda/netlink/neigh_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/neigh_linux.go rename to vendor/src/github.com/vishvananda/netlink/neigh_linux.go diff --git a/vendor/github.com/vishvananda/netlink/netlink.go b/vendor/src/github.com/vishvananda/netlink/netlink.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/netlink.go rename to vendor/src/github.com/vishvananda/netlink/netlink.go diff --git a/vendor/github.com/vishvananda/netlink/netlink_unspecified.go b/vendor/src/github.com/vishvananda/netlink/netlink_unspecified.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/netlink_unspecified.go rename to vendor/src/github.com/vishvananda/netlink/netlink_unspecified.go diff --git a/vendor/github.com/vishvananda/netlink/nl/addr_linux.go b/vendor/src/github.com/vishvananda/netlink/nl/addr_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/nl/addr_linux.go rename to vendor/src/github.com/vishvananda/netlink/nl/addr_linux.go diff --git a/vendor/github.com/vishvananda/netlink/nl/link_linux.go b/vendor/src/github.com/vishvananda/netlink/nl/link_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/nl/link_linux.go rename to vendor/src/github.com/vishvananda/netlink/nl/link_linux.go diff --git a/vendor/github.com/vishvananda/netlink/nl/nl_linux.go b/vendor/src/github.com/vishvananda/netlink/nl/nl_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/nl/nl_linux.go rename to vendor/src/github.com/vishvananda/netlink/nl/nl_linux.go diff --git a/vendor/github.com/vishvananda/netlink/nl/route_linux.go b/vendor/src/github.com/vishvananda/netlink/nl/route_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/nl/route_linux.go rename to vendor/src/github.com/vishvananda/netlink/nl/route_linux.go diff --git a/vendor/github.com/vishvananda/netlink/nl/syscall.go b/vendor/src/github.com/vishvananda/netlink/nl/syscall.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/nl/syscall.go rename to vendor/src/github.com/vishvananda/netlink/nl/syscall.go diff --git a/vendor/github.com/vishvananda/netlink/nl/tc_linux.go b/vendor/src/github.com/vishvananda/netlink/nl/tc_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/nl/tc_linux.go rename to vendor/src/github.com/vishvananda/netlink/nl/tc_linux.go diff --git a/vendor/github.com/vishvananda/netlink/nl/xfrm_linux.go b/vendor/src/github.com/vishvananda/netlink/nl/xfrm_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/nl/xfrm_linux.go rename to vendor/src/github.com/vishvananda/netlink/nl/xfrm_linux.go diff --git a/vendor/github.com/vishvananda/netlink/nl/xfrm_policy_linux.go b/vendor/src/github.com/vishvananda/netlink/nl/xfrm_policy_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/nl/xfrm_policy_linux.go rename to vendor/src/github.com/vishvananda/netlink/nl/xfrm_policy_linux.go diff --git a/vendor/github.com/vishvananda/netlink/nl/xfrm_state_linux.go b/vendor/src/github.com/vishvananda/netlink/nl/xfrm_state_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/nl/xfrm_state_linux.go rename to vendor/src/github.com/vishvananda/netlink/nl/xfrm_state_linux.go diff --git a/vendor/github.com/vishvananda/netlink/protinfo.go b/vendor/src/github.com/vishvananda/netlink/protinfo.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/protinfo.go rename to vendor/src/github.com/vishvananda/netlink/protinfo.go diff --git a/vendor/github.com/vishvananda/netlink/protinfo_linux.go b/vendor/src/github.com/vishvananda/netlink/protinfo_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/protinfo_linux.go rename to vendor/src/github.com/vishvananda/netlink/protinfo_linux.go diff --git a/vendor/github.com/vishvananda/netlink/qdisc.go b/vendor/src/github.com/vishvananda/netlink/qdisc.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/qdisc.go rename to vendor/src/github.com/vishvananda/netlink/qdisc.go diff --git a/vendor/github.com/vishvananda/netlink/qdisc_linux.go b/vendor/src/github.com/vishvananda/netlink/qdisc_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/qdisc_linux.go rename to vendor/src/github.com/vishvananda/netlink/qdisc_linux.go diff --git a/vendor/github.com/vishvananda/netlink/route.go b/vendor/src/github.com/vishvananda/netlink/route.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/route.go rename to vendor/src/github.com/vishvananda/netlink/route.go diff --git a/vendor/github.com/vishvananda/netlink/route_linux.go b/vendor/src/github.com/vishvananda/netlink/route_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/route_linux.go rename to vendor/src/github.com/vishvananda/netlink/route_linux.go diff --git a/vendor/github.com/vishvananda/netlink/rule.go b/vendor/src/github.com/vishvananda/netlink/rule.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/rule.go rename to vendor/src/github.com/vishvananda/netlink/rule.go diff --git a/vendor/github.com/vishvananda/netlink/rule_linux.go b/vendor/src/github.com/vishvananda/netlink/rule_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/rule_linux.go rename to vendor/src/github.com/vishvananda/netlink/rule_linux.go diff --git a/vendor/github.com/vishvananda/netlink/xfrm.go b/vendor/src/github.com/vishvananda/netlink/xfrm.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/xfrm.go rename to vendor/src/github.com/vishvananda/netlink/xfrm.go diff --git a/vendor/github.com/vishvananda/netlink/xfrm_policy.go b/vendor/src/github.com/vishvananda/netlink/xfrm_policy.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/xfrm_policy.go rename to vendor/src/github.com/vishvananda/netlink/xfrm_policy.go diff --git a/vendor/github.com/vishvananda/netlink/xfrm_policy_linux.go b/vendor/src/github.com/vishvananda/netlink/xfrm_policy_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/xfrm_policy_linux.go rename to vendor/src/github.com/vishvananda/netlink/xfrm_policy_linux.go diff --git a/vendor/github.com/vishvananda/netlink/xfrm_state.go b/vendor/src/github.com/vishvananda/netlink/xfrm_state.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/xfrm_state.go rename to vendor/src/github.com/vishvananda/netlink/xfrm_state.go diff --git a/vendor/github.com/vishvananda/netlink/xfrm_state_linux.go b/vendor/src/github.com/vishvananda/netlink/xfrm_state_linux.go similarity index 100% rename from vendor/github.com/vishvananda/netlink/xfrm_state_linux.go rename to vendor/src/github.com/vishvananda/netlink/xfrm_state_linux.go diff --git a/vendor/golang.org/x/net/LICENSE b/vendor/src/golang.org/x/net/LICENSE similarity index 100% rename from vendor/golang.org/x/net/LICENSE rename to vendor/src/golang.org/x/net/LICENSE diff --git a/vendor/golang.org/x/net/context/context.go b/vendor/src/golang.org/x/net/context/context.go similarity index 100% rename from vendor/golang.org/x/net/context/context.go rename to vendor/src/golang.org/x/net/context/context.go diff --git a/vendor/golang.org/x/net/http2/.gitignore b/vendor/src/golang.org/x/net/http2/.gitignore similarity index 100% rename from vendor/golang.org/x/net/http2/.gitignore rename to vendor/src/golang.org/x/net/http2/.gitignore diff --git a/vendor/golang.org/x/net/http2/Dockerfile b/vendor/src/golang.org/x/net/http2/Dockerfile similarity index 100% rename from vendor/golang.org/x/net/http2/Dockerfile rename to vendor/src/golang.org/x/net/http2/Dockerfile diff --git a/vendor/golang.org/x/net/http2/Makefile b/vendor/src/golang.org/x/net/http2/Makefile similarity index 100% rename from vendor/golang.org/x/net/http2/Makefile rename to vendor/src/golang.org/x/net/http2/Makefile diff --git a/vendor/golang.org/x/net/http2/README b/vendor/src/golang.org/x/net/http2/README similarity index 100% rename from vendor/golang.org/x/net/http2/README rename to vendor/src/golang.org/x/net/http2/README diff --git a/vendor/golang.org/x/net/http2/client_conn_pool.go b/vendor/src/golang.org/x/net/http2/client_conn_pool.go similarity index 100% rename from vendor/golang.org/x/net/http2/client_conn_pool.go rename to vendor/src/golang.org/x/net/http2/client_conn_pool.go diff --git a/vendor/golang.org/x/net/http2/configure_transport.go b/vendor/src/golang.org/x/net/http2/configure_transport.go similarity index 100% rename from vendor/golang.org/x/net/http2/configure_transport.go rename to vendor/src/golang.org/x/net/http2/configure_transport.go diff --git a/vendor/golang.org/x/net/http2/errors.go b/vendor/src/golang.org/x/net/http2/errors.go similarity index 100% rename from vendor/golang.org/x/net/http2/errors.go rename to vendor/src/golang.org/x/net/http2/errors.go diff --git a/vendor/golang.org/x/net/http2/fixed_buffer.go b/vendor/src/golang.org/x/net/http2/fixed_buffer.go similarity index 100% rename from vendor/golang.org/x/net/http2/fixed_buffer.go rename to vendor/src/golang.org/x/net/http2/fixed_buffer.go diff --git a/vendor/golang.org/x/net/http2/flow.go b/vendor/src/golang.org/x/net/http2/flow.go similarity index 100% rename from vendor/golang.org/x/net/http2/flow.go rename to vendor/src/golang.org/x/net/http2/flow.go diff --git a/vendor/golang.org/x/net/http2/frame.go b/vendor/src/golang.org/x/net/http2/frame.go similarity index 100% rename from vendor/golang.org/x/net/http2/frame.go rename to vendor/src/golang.org/x/net/http2/frame.go diff --git a/vendor/golang.org/x/net/http2/go15.go b/vendor/src/golang.org/x/net/http2/go15.go similarity index 100% rename from vendor/golang.org/x/net/http2/go15.go rename to vendor/src/golang.org/x/net/http2/go15.go diff --git a/vendor/golang.org/x/net/http2/gotrack.go b/vendor/src/golang.org/x/net/http2/gotrack.go similarity index 100% rename from vendor/golang.org/x/net/http2/gotrack.go rename to vendor/src/golang.org/x/net/http2/gotrack.go diff --git a/vendor/golang.org/x/net/http2/headermap.go b/vendor/src/golang.org/x/net/http2/headermap.go similarity index 100% rename from vendor/golang.org/x/net/http2/headermap.go rename to vendor/src/golang.org/x/net/http2/headermap.go diff --git a/vendor/golang.org/x/net/http2/hpack/encode.go b/vendor/src/golang.org/x/net/http2/hpack/encode.go similarity index 100% rename from vendor/golang.org/x/net/http2/hpack/encode.go rename to vendor/src/golang.org/x/net/http2/hpack/encode.go diff --git a/vendor/golang.org/x/net/http2/hpack/hpack.go b/vendor/src/golang.org/x/net/http2/hpack/hpack.go similarity index 100% rename from vendor/golang.org/x/net/http2/hpack/hpack.go rename to vendor/src/golang.org/x/net/http2/hpack/hpack.go diff --git a/vendor/golang.org/x/net/http2/hpack/huffman.go b/vendor/src/golang.org/x/net/http2/hpack/huffman.go similarity index 100% rename from vendor/golang.org/x/net/http2/hpack/huffman.go rename to vendor/src/golang.org/x/net/http2/hpack/huffman.go diff --git a/vendor/golang.org/x/net/http2/hpack/tables.go b/vendor/src/golang.org/x/net/http2/hpack/tables.go similarity index 100% rename from vendor/golang.org/x/net/http2/hpack/tables.go rename to vendor/src/golang.org/x/net/http2/hpack/tables.go diff --git a/vendor/golang.org/x/net/http2/http2.go b/vendor/src/golang.org/x/net/http2/http2.go similarity index 100% rename from vendor/golang.org/x/net/http2/http2.go rename to vendor/src/golang.org/x/net/http2/http2.go diff --git a/vendor/golang.org/x/net/http2/not_go15.go b/vendor/src/golang.org/x/net/http2/not_go15.go similarity index 100% rename from vendor/golang.org/x/net/http2/not_go15.go rename to vendor/src/golang.org/x/net/http2/not_go15.go diff --git a/vendor/golang.org/x/net/http2/not_go16.go b/vendor/src/golang.org/x/net/http2/not_go16.go similarity index 100% rename from vendor/golang.org/x/net/http2/not_go16.go rename to vendor/src/golang.org/x/net/http2/not_go16.go diff --git a/vendor/golang.org/x/net/http2/pipe.go b/vendor/src/golang.org/x/net/http2/pipe.go similarity index 100% rename from vendor/golang.org/x/net/http2/pipe.go rename to vendor/src/golang.org/x/net/http2/pipe.go diff --git a/vendor/golang.org/x/net/http2/server.go b/vendor/src/golang.org/x/net/http2/server.go similarity index 100% rename from vendor/golang.org/x/net/http2/server.go rename to vendor/src/golang.org/x/net/http2/server.go diff --git a/vendor/golang.org/x/net/http2/transport.go b/vendor/src/golang.org/x/net/http2/transport.go similarity index 100% rename from vendor/golang.org/x/net/http2/transport.go rename to vendor/src/golang.org/x/net/http2/transport.go diff --git a/vendor/golang.org/x/net/http2/write.go b/vendor/src/golang.org/x/net/http2/write.go similarity index 100% rename from vendor/golang.org/x/net/http2/write.go rename to vendor/src/golang.org/x/net/http2/write.go diff --git a/vendor/golang.org/x/net/http2/writesched.go b/vendor/src/golang.org/x/net/http2/writesched.go similarity index 100% rename from vendor/golang.org/x/net/http2/writesched.go rename to vendor/src/golang.org/x/net/http2/writesched.go diff --git a/vendor/golang.org/x/net/internal/timeseries/timeseries.go b/vendor/src/golang.org/x/net/internal/timeseries/timeseries.go similarity index 100% rename from vendor/golang.org/x/net/internal/timeseries/timeseries.go rename to vendor/src/golang.org/x/net/internal/timeseries/timeseries.go diff --git a/vendor/golang.org/x/net/trace/events.go b/vendor/src/golang.org/x/net/trace/events.go similarity index 100% rename from vendor/golang.org/x/net/trace/events.go rename to vendor/src/golang.org/x/net/trace/events.go diff --git a/vendor/golang.org/x/net/trace/histogram.go b/vendor/src/golang.org/x/net/trace/histogram.go similarity index 100% rename from vendor/golang.org/x/net/trace/histogram.go rename to vendor/src/golang.org/x/net/trace/histogram.go diff --git a/vendor/golang.org/x/net/trace/trace.go b/vendor/src/golang.org/x/net/trace/trace.go similarity index 100% rename from vendor/golang.org/x/net/trace/trace.go rename to vendor/src/golang.org/x/net/trace/trace.go diff --git a/vendor/google.golang.org/grpc/.travis.yml b/vendor/src/google.golang.org/grpc/.travis.yml similarity index 100% rename from vendor/google.golang.org/grpc/.travis.yml rename to vendor/src/google.golang.org/grpc/.travis.yml diff --git a/vendor/google.golang.org/grpc/CONTRIBUTING.md b/vendor/src/google.golang.org/grpc/CONTRIBUTING.md similarity index 100% rename from vendor/google.golang.org/grpc/CONTRIBUTING.md rename to vendor/src/google.golang.org/grpc/CONTRIBUTING.md diff --git a/vendor/google.golang.org/grpc/LICENSE b/vendor/src/google.golang.org/grpc/LICENSE similarity index 100% rename from vendor/google.golang.org/grpc/LICENSE rename to vendor/src/google.golang.org/grpc/LICENSE diff --git a/vendor/google.golang.org/grpc/Makefile b/vendor/src/google.golang.org/grpc/Makefile similarity index 100% rename from vendor/google.golang.org/grpc/Makefile rename to vendor/src/google.golang.org/grpc/Makefile diff --git a/vendor/google.golang.org/grpc/PATENTS b/vendor/src/google.golang.org/grpc/PATENTS similarity index 100% rename from vendor/google.golang.org/grpc/PATENTS rename to vendor/src/google.golang.org/grpc/PATENTS diff --git a/vendor/google.golang.org/grpc/README.md b/vendor/src/google.golang.org/grpc/README.md similarity index 100% rename from vendor/google.golang.org/grpc/README.md rename to vendor/src/google.golang.org/grpc/README.md diff --git a/vendor/google.golang.org/grpc/call.go b/vendor/src/google.golang.org/grpc/call.go similarity index 100% rename from vendor/google.golang.org/grpc/call.go rename to vendor/src/google.golang.org/grpc/call.go diff --git a/vendor/google.golang.org/grpc/clientconn.go b/vendor/src/google.golang.org/grpc/clientconn.go similarity index 100% rename from vendor/google.golang.org/grpc/clientconn.go rename to vendor/src/google.golang.org/grpc/clientconn.go diff --git a/vendor/google.golang.org/grpc/codegen.sh b/vendor/src/google.golang.org/grpc/codegen.sh similarity index 100% rename from vendor/google.golang.org/grpc/codegen.sh rename to vendor/src/google.golang.org/grpc/codegen.sh diff --git a/vendor/google.golang.org/grpc/codes/code_string.go b/vendor/src/google.golang.org/grpc/codes/code_string.go similarity index 100% rename from vendor/google.golang.org/grpc/codes/code_string.go rename to vendor/src/google.golang.org/grpc/codes/code_string.go diff --git a/vendor/google.golang.org/grpc/codes/codes.go b/vendor/src/google.golang.org/grpc/codes/codes.go similarity index 100% rename from vendor/google.golang.org/grpc/codes/codes.go rename to vendor/src/google.golang.org/grpc/codes/codes.go diff --git a/vendor/google.golang.org/grpc/coverage.sh b/vendor/src/google.golang.org/grpc/coverage.sh similarity index 100% rename from vendor/google.golang.org/grpc/coverage.sh rename to vendor/src/google.golang.org/grpc/coverage.sh diff --git a/vendor/google.golang.org/grpc/credentials/credentials.go b/vendor/src/google.golang.org/grpc/credentials/credentials.go similarity index 100% rename from vendor/google.golang.org/grpc/credentials/credentials.go rename to vendor/src/google.golang.org/grpc/credentials/credentials.go diff --git a/vendor/google.golang.org/grpc/doc.go b/vendor/src/google.golang.org/grpc/doc.go similarity index 100% rename from vendor/google.golang.org/grpc/doc.go rename to vendor/src/google.golang.org/grpc/doc.go diff --git a/vendor/google.golang.org/grpc/grpclog/logger.go b/vendor/src/google.golang.org/grpc/grpclog/logger.go similarity index 100% rename from vendor/google.golang.org/grpc/grpclog/logger.go rename to vendor/src/google.golang.org/grpc/grpclog/logger.go diff --git a/vendor/google.golang.org/grpc/metadata/metadata.go b/vendor/src/google.golang.org/grpc/metadata/metadata.go similarity index 100% rename from vendor/google.golang.org/grpc/metadata/metadata.go rename to vendor/src/google.golang.org/grpc/metadata/metadata.go diff --git a/vendor/google.golang.org/grpc/naming/naming.go b/vendor/src/google.golang.org/grpc/naming/naming.go similarity index 100% rename from vendor/google.golang.org/grpc/naming/naming.go rename to vendor/src/google.golang.org/grpc/naming/naming.go diff --git a/vendor/google.golang.org/grpc/picker.go b/vendor/src/google.golang.org/grpc/picker.go similarity index 100% rename from vendor/google.golang.org/grpc/picker.go rename to vendor/src/google.golang.org/grpc/picker.go diff --git a/vendor/google.golang.org/grpc/rpc_util.go b/vendor/src/google.golang.org/grpc/rpc_util.go similarity index 100% rename from vendor/google.golang.org/grpc/rpc_util.go rename to vendor/src/google.golang.org/grpc/rpc_util.go diff --git a/vendor/google.golang.org/grpc/server.go b/vendor/src/google.golang.org/grpc/server.go similarity index 100% rename from vendor/google.golang.org/grpc/server.go rename to vendor/src/google.golang.org/grpc/server.go diff --git a/vendor/google.golang.org/grpc/stream.go b/vendor/src/google.golang.org/grpc/stream.go similarity index 100% rename from vendor/google.golang.org/grpc/stream.go rename to vendor/src/google.golang.org/grpc/stream.go diff --git a/vendor/google.golang.org/grpc/trace.go b/vendor/src/google.golang.org/grpc/trace.go similarity index 100% rename from vendor/google.golang.org/grpc/trace.go rename to vendor/src/google.golang.org/grpc/trace.go diff --git a/vendor/google.golang.org/grpc/transport/control.go b/vendor/src/google.golang.org/grpc/transport/control.go similarity index 100% rename from vendor/google.golang.org/grpc/transport/control.go rename to vendor/src/google.golang.org/grpc/transport/control.go diff --git a/vendor/google.golang.org/grpc/transport/http2_client.go b/vendor/src/google.golang.org/grpc/transport/http2_client.go similarity index 100% rename from vendor/google.golang.org/grpc/transport/http2_client.go rename to vendor/src/google.golang.org/grpc/transport/http2_client.go diff --git a/vendor/google.golang.org/grpc/transport/http2_server.go b/vendor/src/google.golang.org/grpc/transport/http2_server.go similarity index 100% rename from vendor/google.golang.org/grpc/transport/http2_server.go rename to vendor/src/google.golang.org/grpc/transport/http2_server.go diff --git a/vendor/google.golang.org/grpc/transport/http_util.go b/vendor/src/google.golang.org/grpc/transport/http_util.go similarity index 100% rename from vendor/google.golang.org/grpc/transport/http_util.go rename to vendor/src/google.golang.org/grpc/transport/http_util.go diff --git a/vendor/google.golang.org/grpc/transport/transport.go b/vendor/src/google.golang.org/grpc/transport/transport.go similarity index 100% rename from vendor/google.golang.org/grpc/transport/transport.go rename to vendor/src/google.golang.org/grpc/transport/transport.go