Merge pull request #1736 from giuseppe/rootless-drop-run-postfix

rootless: do not add an additional /run to runroot
This commit is contained in:
OpenShift Merge Robot 2018-10-31 07:20:09 -07:00 committed by GitHub
commit e75469ab99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -256,7 +256,7 @@ func GetRootlessStorageOpts() (storage.StoreOptions, error) {
if err != nil {
return opts, err
}
opts.RunRoot = filepath.Join(rootlessRuntime, "run")
opts.RunRoot = rootlessRuntime
dataDir := os.Getenv("XDG_DATA_HOME")
if dataDir == "" {