Skip to content

Commit 3cf8a9e

Browse files
author
Frank Groeneveld
committed
Update vendored engine-api for OpenBSD support
Signed-off-by: Frank Groeneveld <frank@frankgroeneveld.nl>
1 parent 1a7afc0 commit 3cf8a9e

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

hack/vendor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ clone git golang.org/x/net 47990a1ba55743e6ef1affd3a14e5bac8553615d https://gith
2424
clone git golang.org/x/sys eb2c74142fd19a79b3f237334c7384d5167b1b46 https://github.com/golang/sys.git
2525
clone git github.com/docker/go-units 651fc226e7441360384da338d0fd37f2440ffbe3
2626
clone git github.com/docker/go-connections v0.2.0
27-
clone git github.com/docker/engine-api 6de18e18540cda038b00e71a1f2946d779e83f87
27+
clone git github.com/docker/engine-api 68a7b6bebf8f57d559b7788a46c55045438747b9
2828
clone git github.com/RackSec/srslog 259aed10dfa74ea2961eddd1d9847619f6e98837
2929
clone git github.com/imdario/mergo 0.2.1
3030

vendor/src/github.com/docker/engine-api/client/client_unix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// +build linux freebsd solaris
1+
// +build linux freebsd solaris openbsd
22

33
package client
44

vendor/src/github.com/docker/engine-api/types/types.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -368,9 +368,10 @@ type MountPoint struct {
368368

369369
// Volume represents the configuration of a volume for the remote API
370370
type Volume struct {
371-
Name string // Name is the name of the volume
372-
Driver string // Driver is the Driver name used to create the volume
373-
Mountpoint string // Mountpoint is the location on disk of the volume
371+
Name string // Name is the name of the volume
372+
Driver string // Driver is the Driver name used to create the volume
373+
Mountpoint string // Mountpoint is the location on disk of the volume
374+
Status map[string]interface{} `json:",omitempty"` // Status provides low-level status information about the volume
374375
}
375376

376377
// VolumesListResponse contains the response for the remote API:

0 commit comments

Comments
 (0)