From 9bf8bd7bcbf347c11158e6857b7e4cc8ef47680c Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Mon, 4 Mar 2019 10:35:01 +0100 Subject: runtime: fill a proper default tmpdir when --config is used Closes: https://github.com/containers/libpod/issues/2408 Signed-off-by: Giuseppe Scrivano --- libpod/runtime.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libpod/runtime.go b/libpod/runtime.go index f53cdd8b8..112b6820a 100644 --- a/libpod/runtime.go +++ b/libpod/runtime.go @@ -477,6 +477,12 @@ func NewRuntimeFromConfig(configPath string, options ...RuntimeOption) (runtime runtime.config.OCIRuntime = defaultRuntimeConfig.OCIRuntime runtime.config.StorageConfig = storage.StoreOptions{} + tmpDir, err := getDefaultTmpDir() + if err != nil { + return nil, err + } + runtime.config.TmpDir = tmpDir + // Check to see if the given configuration file exists if _, err := os.Stat(configPath); err != nil { return nil, errors.Wrapf(err, "error checking existence of configuration file %s", configPath) -- cgit v1.2.3-54-g00ecf