From 3cf8a9ede71081efbade168fa6ff6d65d2a0e4eb Mon Sep 17 00:00:00 2001 From: Frank Groeneveld Date: Mon, 21 Mar 2016 12:11:11 +0100 Subject: [PATCH] Update vendored engine-api for OpenBSD support Signed-off-by: Frank Groeneveld --- hack/vendor.sh | 2 +- .../src/github.com/docker/engine-api/client/client_unix.go | 2 +- vendor/src/github.com/docker/engine-api/types/types.go | 7 ++++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/hack/vendor.sh b/hack/vendor.sh index b1087c767c..7a8dff133a 100755 --- a/hack/vendor.sh +++ b/hack/vendor.sh @@ -24,7 +24,7 @@ clone git golang.org/x/net 47990a1ba55743e6ef1affd3a14e5bac8553615d https://gith clone git golang.org/x/sys eb2c74142fd19a79b3f237334c7384d5167b1b46 https://github.com/golang/sys.git clone git github.com/docker/go-units 651fc226e7441360384da338d0fd37f2440ffbe3 clone git github.com/docker/go-connections v0.2.0 -clone git github.com/docker/engine-api 6de18e18540cda038b00e71a1f2946d779e83f87 +clone git github.com/docker/engine-api 68a7b6bebf8f57d559b7788a46c55045438747b9 clone git github.com/RackSec/srslog 259aed10dfa74ea2961eddd1d9847619f6e98837 clone git github.com/imdario/mergo 0.2.1 diff --git a/vendor/src/github.com/docker/engine-api/client/client_unix.go b/vendor/src/github.com/docker/engine-api/client/client_unix.go index a6d5390a7c..572c5f87a7 100644 --- a/vendor/src/github.com/docker/engine-api/client/client_unix.go +++ b/vendor/src/github.com/docker/engine-api/client/client_unix.go @@ -1,4 +1,4 @@ -// +build linux freebsd solaris +// +build linux freebsd solaris openbsd package client diff --git a/vendor/src/github.com/docker/engine-api/types/types.go b/vendor/src/github.com/docker/engine-api/types/types.go index 0b6494aa50..c47df2acbe 100644 --- a/vendor/src/github.com/docker/engine-api/types/types.go +++ b/vendor/src/github.com/docker/engine-api/types/types.go @@ -368,9 +368,10 @@ type MountPoint struct { // Volume represents the configuration of a volume for the remote API type Volume struct { - Name string // Name is the name of the volume - Driver string // Driver is the Driver name used to create the volume - Mountpoint string // Mountpoint is the location on disk of the volume + Name string // Name is the name of the volume + Driver string // Driver is the Driver name used to create the volume + Mountpoint string // Mountpoint is the location on disk of the volume + Status map[string]interface{} `json:",omitempty"` // Status provides low-level status information about the volume } // VolumesListResponse contains the response for the remote API: