From 556cc1fadf9a65da20dcc1e4ef0fa2523850cf7e Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 9 Jan 2020 14:06:33 +0900 Subject: rootlessport: honor ctr.runtime.config.TmpDir Previously, rootlessport was using /var/tmp as the tmp dir. Signed-off-by: Akihiro Suda --- libpod/networking_linux.go | 1 + 1 file changed, 1 insertion(+) (limited to 'libpod') diff --git a/libpod/networking_linux.go b/libpod/networking_linux.go index 06b3fe957..89dac2b5d 100644 --- a/libpod/networking_linux.go +++ b/libpod/networking_linux.go @@ -344,6 +344,7 @@ func (r *Runtime) setupRootlessPortMapping(ctr *Container, netnsPath string) (er NetNSPath: netnsPath, ExitFD: 3, ReadyFD: 4, + TmpDir: ctr.runtime.config.TmpDir, } cfgJSON, err := json.Marshal(cfg) if err != nil { -- cgit v1.2.3-54-g00ecf