From c35853191ccd9ca8fe91b666d598eac3e4e12c67 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Tue, 25 Feb 2014 10:07:06 -0500 Subject: [PATCH] correcting the package name for the terminal setup Docker-DCO-1.1-Signed-off-by: Vincent Batts (github: vbatts) --- execdriver/lxc/driver.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/execdriver/lxc/driver.go b/execdriver/lxc/driver.go index 145965a383..c18b2e6ab4 100644 --- a/execdriver/lxc/driver.go +++ b/execdriver/lxc/driver.go @@ -4,7 +4,6 @@ import ( "fmt" "github.com/dotcloud/docker/execdriver" "github.com/dotcloud/docker/pkg/cgroups" - "github.com/dotcloud/docker/pkg/term" "github.com/dotcloud/docker/utils" "io/ioutil" "log" @@ -78,7 +77,7 @@ func (d *driver) Name() string { } func (d *driver) Run(c *execdriver.Command, pipes *execdriver.Pipes, startCallback execdriver.StartCallback) (int, error) { - if err := term.SetTerminal(c, pipes); err != nil { + if err := execdriver.SetTerminal(c, pipes); err != nil { return -1, err } configPath, err := d.generateLXCConfig(c)