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

Export DOCKER_GRAPHDRIVER and DOCKER_EXECDRIVER in integration-cli

This needed for our "small" testing daemon using same config as "big"
testing daemon.

Signed-off-by: Alexander Morozov <lk4d4@docker.com>
This commit is contained in:
Alexander Morozov 2015-01-27 16:40:11 -08:00
parent bb4025c4e2
commit 667dc58c39

View file

@ -12,8 +12,8 @@ fi
# intentionally open a couple bogus file descriptors to help test that they get scrubbed in containers # intentionally open a couple bogus file descriptors to help test that they get scrubbed in containers
exec 41>&1 42>&2 exec 41>&1 42>&2
DOCKER_GRAPHDRIVER=${DOCKER_GRAPHDRIVER:-vfs} export DOCKER_GRAPHDRIVER=${DOCKER_GRAPHDRIVER:-vfs}
DOCKER_EXECDRIVER=${DOCKER_EXECDRIVER:-native} export DOCKER_EXECDRIVER=${DOCKER_EXECDRIVER:-native}
if [ -z "$DOCKER_TEST_HOST" ]; then if [ -z "$DOCKER_TEST_HOST" ]; then
( set -x; exec \ ( set -x; exec \