diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-06-18 17:27:39 -0400 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-06-25 09:35:34 -0400 |
commit | 9f4afa1ea229cebc45e2bc8525881fe74d79cd1d (patch) | |
tree | ee3adb5303604987a12fe17b1709415affe2e262 /libpod/runtime.go | |
parent | 5dabff27db83a0bdbea0e736050f5e3cb2c1d95e (diff) | |
download | podman-9f4afa1ea229cebc45e2bc8525881fe74d79cd1d.tar.gz podman-9f4afa1ea229cebc45e2bc8525881fe74d79cd1d.tar.bz2 podman-9f4afa1ea229cebc45e2bc8525881fe74d79cd1d.zip |
fix systemcontext to use correct TMPDIR
Users are complaining about read/only /var/tmp failing
even if TMPDIR=/tmp is set.
This PR Fixes: https://github.com/containers/podman/issues/10698
[NO TESTS NEEDED] No way to test this.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
<MH: Fixed cherry-pick conflicts>
Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'libpod/runtime.go')
-rw-r--r-- | libpod/runtime.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libpod/runtime.go b/libpod/runtime.go index f0c85df3b..7099f55f2 100644 --- a/libpod/runtime.go +++ b/libpod/runtime.go @@ -15,6 +15,7 @@ import ( "syscall" "time" + "github.com/containers/buildah/pkg/parse" "github.com/containers/common/libimage" "github.com/containers/common/pkg/config" "github.com/containers/image/v5/pkg/sysregistriesv2" @@ -379,7 +380,9 @@ func makeRuntime(ctx context.Context, runtime *Runtime) (retErr error) { // Set up containers/image if runtime.imageContext == nil { - runtime.imageContext = &types.SystemContext{} + runtime.imageContext = &types.SystemContext{ + BigFilesTemporaryDir: parse.GetTempDir(), + } } runtime.imageContext.SignaturePolicyPath = runtime.config.Engine.SignaturePolicyPath |