From e87d4b5af0f67058a5d50f6bf1e58aa92d12a73d Mon Sep 17 00:00:00 2001 From: James Hunt Date: Thu, 12 Nov 2015 17:17:06 +0000 Subject: [PATCH] Clear Linux VERSION and default exec driver. Signed-off-by: James Hunt --- VERSION | 2 +- daemon/config_unix.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 9ab8337f3..587dbef01 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.9.1 +1.9.1-clear-containers diff --git a/daemon/config_unix.go b/daemon/config_unix.go index 3ae67cac5..237cda891 100644 --- a/daemon/config_unix.go +++ b/daemon/config_unix.go @@ -13,7 +13,7 @@ import ( var ( defaultPidFile = "/var/run/docker.pid" defaultGraph = "/var/lib/docker" - defaultExec = "native" + defaultExec = "clr" ) // Config defines the configuration of a docker daemon.