Since --exec-driver flag has been removed, we don't need environment
DOCKER_EXECDRIVER in integration-cli and Makefile any more.
Signed-off-by: Lei Jitang <leijiang@huawei.com>
| ... | ... |
@@ -212,7 +212,6 @@ test_env() {
|
| 212 | 212 |
# use "env -i" to tightly control the environment variables that bleed into the tests |
| 213 | 213 |
env -i \ |
| 214 | 214 |
DEST="$DEST" \ |
| 215 |
- DOCKER_EXECDRIVER="$DOCKER_EXECDRIVER" \ |
|
| 216 | 215 |
DOCKER_GRAPHDRIVER="$DOCKER_GRAPHDRIVER" \ |
| 217 | 216 |
DOCKER_USERLANDPROXY="$DOCKER_USERLANDPROXY" \ |
| 218 | 217 |
DOCKER_HOST="$DOCKER_HOST" \ |
| ... | ... |
@@ -113,7 +113,6 @@ type Daemon struct {
|
| 113 | 113 |
stdout, stderr io.ReadCloser |
| 114 | 114 |
cmd *exec.Cmd |
| 115 | 115 |
storageDriver string |
| 116 |
- execDriver string |
|
| 117 | 116 |
wait chan error |
| 118 | 117 |
userlandProxy bool |
| 119 | 118 |
useDefaultHost bool |
| ... | ... |
@@ -155,7 +154,6 @@ func NewDaemon(c *check.C) *Daemon {
|
| 155 | 155 |
folder: daemonFolder, |
| 156 | 156 |
root: daemonRoot, |
| 157 | 157 |
storageDriver: os.Getenv("DOCKER_GRAPHDRIVER"),
|
| 158 |
- execDriver: os.Getenv("DOCKER_EXECDRIVER"),
|
|
| 159 | 158 |
userlandProxy: userlandProxy, |
| 160 | 159 |
} |
| 161 | 160 |
} |