1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

rename lxc to bridge

Docker-DCO-1.1-Signed-off-by: Victor Vieux <victor.vieux@docker.com> (github: vieux)
This commit is contained in:
Victor Vieux 2014-03-20 21:51:28 +00:00
parent 56c156190a
commit 8944fb2e9b
3 changed files with 5 additions and 6 deletions

View file

@ -1,10 +1,9 @@
package builtins
import (
"github.com/dotcloud/docker/engine"
"github.com/dotcloud/docker/api"
"github.com/dotcloud/docker/runtime/networkdriver/lxc"
"github.com/dotcloud/docker/engine"
"github.com/dotcloud/docker/runtime/networkdriver/bridge"
"github.com/dotcloud/docker/server"
)
@ -35,5 +34,5 @@ func remote(eng *engine.Engine) {
//
func daemon(eng *engine.Engine) {
eng.Register("initserver", server.InitServer)
eng.Register("init_networkdriver", lxc.InitDriver)
eng.Register("init_networkdriver", bridge.InitDriver)
}

View file

@ -1,4 +1,4 @@
package lxc
package bridge
import (
"fmt"

View file

@ -17,7 +17,7 @@ import (
"github.com/dotcloud/docker/runtime/execdriver/lxc"
"github.com/dotcloud/docker/runtime/graphdriver"
_ "github.com/dotcloud/docker/runtime/graphdriver/vfs"
_ "github.com/dotcloud/docker/runtime/networkdriver/lxc"
_ "github.com/dotcloud/docker/runtime/networkdriver/bridge"
"github.com/dotcloud/docker/runtime/networkdriver/portallocator"
"github.com/dotcloud/docker/utils"
"io"