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 --- pkg/rootlessport/rootlessport_linux.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkg') diff --git a/pkg/rootlessport/rootlessport_linux.go b/pkg/rootlessport/rootlessport_linux.go index 88105733f..3e678d33a 100644 --- a/pkg/rootlessport/rootlessport_linux.go +++ b/pkg/rootlessport/rootlessport_linux.go @@ -46,6 +46,7 @@ type Config struct { NetNSPath string ExitFD int ReadyFD int + TmpDir string } func init() { @@ -101,7 +102,7 @@ func parent() error { } // create the parent driver - stateDir, err := ioutil.TempDir("", "rootlessport") + stateDir, err := ioutil.TempDir(cfg.TmpDir, "rootlessport") if err != nil { return err } -- cgit v1.2.3-54-g00ecf