diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2018-06-01 13:02:20 +0200 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-06-15 14:53:18 +0000 |
commit | 81a7095389f2220aa7b0631f6013a4c03839dbd9 (patch) | |
tree | abf3749ec58b663dea847c56927e378034587596 /cmd/podman | |
parent | be66361e08d571dee36dd6034ee54aacf9e88e96 (diff) | |
download | podman-81a7095389f2220aa7b0631f6013a4c03839dbd9.tar.gz podman-81a7095389f2220aa7b0631f6013a4c03839dbd9.tar.bz2 podman-81a7095389f2220aa7b0631f6013a4c03839dbd9.zip |
podman: allow to override Tmpdir
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Closes: #871
Approved by: mheon
Diffstat (limited to 'cmd/podman')
-rw-r--r-- | cmd/podman/libpodruntime/runtime.go | 3 | ||||
-rw-r--r-- | cmd/podman/main.go | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/cmd/podman/libpodruntime/runtime.go b/cmd/podman/libpodruntime/runtime.go index acb531737..9ea40e00a 100644 --- a/cmd/podman/libpodruntime/runtime.go +++ b/cmd/podman/libpodruntime/runtime.go @@ -41,6 +41,9 @@ func GetRuntimeWithStorageOpts(c *cli.Context, storageOpts *storage.StoreOptions if c.GlobalIsSet("conmon") { options = append(options, libpod.WithConmonPath(c.GlobalString("conmon"))) } + if c.GlobalIsSet("tmpdir") { + options = append(options, libpod.WithTmpDir(c.GlobalString("tmpdir"))) + } if c.GlobalIsSet("cgroup-manager") { options = append(options, libpod.WithCgroupManager(c.GlobalString("cgroup-manager"))) diff --git a/cmd/podman/main.go b/cmd/podman/main.go index 56e724098..8ee86dd92 100644 --- a/cmd/podman/main.go +++ b/cmd/podman/main.go @@ -154,6 +154,10 @@ func main() { Usage: "path to the root directory in which data, including images, is stored", }, cli.StringFlag{ + Name: "tmpdir", + Usage: "path to the tmp directory", + }, + cli.StringFlag{ Name: "runroot", Usage: "path to the 'run directory' where all state information is stored", }, |