Do not default to overlay

We should default to "" and then allow the library to pick the
best driver for the particular distribution.  Picking overlay is
currently breaking cri-o on Centos and RHEL, since they don't
support overlay driver until 7.4 release.

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh 2017-08-02 15:30:48 -04:00
parent 47536c89fc
commit 7250a23f36
1 changed files with 1 additions and 1 deletions

View File

@ -2309,7 +2309,7 @@ type tomlConfig struct {
func init() {
DefaultStoreOptions.RunRoot = "/var/run/containers/storage"
DefaultStoreOptions.GraphRoot = "/var/lib/containers/storage"
DefaultStoreOptions.GraphDriverName = "overlay"
DefaultStoreOptions.GraphDriverName = ""
data, err := ioutil.ReadFile(configFile)
if err != nil {