Browse code

graphdriver: promote overlay above vfs

It's about time to let folks not hit 'vfs', when 'overlay' is supported
on their kernel. Especially now that v3.18.y is a long-term kernel.

Signed-off-by: Vincent Batts <vbatts@redhat.com>

Vincent Batts authored on 2015/04/01 04:10:23
Showing 1 changed files
... ...
@@ -39,9 +39,8 @@ var (
39 39
 		"aufs",
40 40
 		"btrfs",
41 41
 		"devicemapper",
42
-		"vfs",
43
-		// experimental, has to be enabled manually for now
44 42
 		"overlay",
43
+		"vfs",
45 44
 	}
46 45
 
47 46
 	ErrNotSupported   = errors.New("driver not supported")