diff options
Diffstat (limited to 'libpod/runtime.go')
-rw-r--r-- | libpod/runtime.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libpod/runtime.go b/libpod/runtime.go index 338a2b436..b840d65b0 100644 --- a/libpod/runtime.go +++ b/libpod/runtime.go @@ -177,10 +177,8 @@ var ( // GetRootlessRuntimeDir returns the runtime directory when running as non root func GetRootlessRuntimeDir() string { - hasNoEnv := false runtimeDir := os.Getenv("XDG_RUNTIME_DIR") if runtimeDir == "" { - hasNoEnv = true tmpDir := filepath.Join(os.TempDir(), "user", fmt.Sprintf("%d", os.Getuid())) os.MkdirAll(tmpDir, 0700) st, err := os.Stat(tmpDir) @@ -191,9 +189,6 @@ func GetRootlessRuntimeDir() string { if runtimeDir == "" { runtimeDir = filepath.Join(os.Getenv("HOME"), "rundir") } - if hasNoEnv { - os.Setenv("XDG_RUNTIME_DIR", runtimeDir) - } return runtimeDir } |