From 67dbc4c6a611362fa24eda4ee01691b9eb609868 Mon Sep 17 00:00:00 2001 From: Eric Paris Date: Mon, 3 Aug 2015 13:39:50 -0400 Subject: [PATCH] Actually use the version of libcontainer godep thinks we are using When libcontainer was added it was apparently not actually the version of libcontainer it portends to be. One line was removed from libcontainer in Godeps which is present in the upstream tree. This was likely done as it required a definition in a different package which was not in our tree (and was vendored into libcontainer upstream) We would be wise to have a test to see if package versions in Godep are actually the packages they say they are... --- .../src/github.com/docker/libcontainer/capabilities_linux.go | 1 + 1 file changed, 1 insertion(+) diff --git a/Godeps/_workspace/src/github.com/docker/libcontainer/capabilities_linux.go b/Godeps/_workspace/src/github.com/docker/libcontainer/capabilities_linux.go index b1c5c17604d..6b8b465c56b 100644 --- a/Godeps/_workspace/src/github.com/docker/libcontainer/capabilities_linux.go +++ b/Godeps/_workspace/src/github.com/docker/libcontainer/capabilities_linux.go @@ -49,6 +49,7 @@ var capabilityList = map[string]capability.Cap{ "SETFCAP": capability.CAP_SETFCAP, "WAKE_ALARM": capability.CAP_WAKE_ALARM, "BLOCK_SUSPEND": capability.CAP_BLOCK_SUSPEND, + "AUDIT_READ": capability.CAP_AUDIT_READ, } func newCapWhitelist(caps []string) (*whitelist, error) {