summaryrefslogtreecommitdiff
path: root/libnetwork/drivers_linux.go
diff options
context:
space:
mode:
authorMadhu Venugopal <madhu@docker.com>2016-06-13 19:38:18 -0700
committerMadhu Venugopal <madhu@docker.com>2016-06-13 22:42:20 -0700
commitfe56a8d3dc7fa739830cac3035dcf134e77413c6 (patch)
tree0cebdeb5920db27643a939993122746473be28f2 /libnetwork/drivers_linux.go
parentbbba96fcc582539e771d40b17395803811ab1c04 (diff)
downloaddocker-fe56a8d3dc7fa739830cac3035dcf134e77413c6.tar.gz
Moving MacVlan driver out of experimental
Signed-off-by: Madhu Venugopal <madhu@docker.com>
Diffstat (limited to 'libnetwork/drivers_linux.go')
-rw-r--r--libnetwork/drivers_linux.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/libnetwork/drivers_linux.go b/libnetwork/drivers_linux.go
index df8b4d734b..50416512f3 100644
--- a/libnetwork/drivers_linux.go
+++ b/libnetwork/drivers_linux.go
@@ -3,6 +3,7 @@ package libnetwork
import (
"github.com/docker/libnetwork/drivers/bridge"
"github.com/docker/libnetwork/drivers/host"
+ "github.com/docker/libnetwork/drivers/macvlan"
"github.com/docker/libnetwork/drivers/null"
"github.com/docker/libnetwork/drivers/overlay"
"github.com/docker/libnetwork/drivers/remote"
@@ -12,6 +13,7 @@ func getInitializers() []initializer {
in := []initializer{
{bridge.Init, "bridge"},
{host.Init, "host"},
+ {macvlan.Init, "macvlan"},
{null.Init, "null"},
{remote.Init, "remote"},
{overlay.Init, "overlay"},