diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-11-26 19:42:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-26 19:42:36 +0100 |
commit | 07c63583dd6c539f70184c4693b10399f367e3e3 (patch) | |
tree | b27c8b59f6cbf13bd9c6191c276870cf8e065940 /cmd | |
parent | f5ef3d59bcc7e7beae8716ab10153e1eafd634c1 (diff) | |
parent | 2087e92ff3dc9b5b2155822b955e52aa4e2802b1 (diff) | |
download | podman-07c63583dd6c539f70184c4693b10399f367e3e3.tar.gz podman-07c63583dd6c539f70184c4693b10399f367e3e3.tar.bz2 podman-07c63583dd6c539f70184c4693b10399f367e3e3.zip |
Merge pull request #4475 from rhatdan/tmpdir
Add missing information to podman.1 man page
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/main_local.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/main_local.go b/cmd/podman/main_local.go index 0484e3cf0..968d7331a 100644 --- a/cmd/podman/main_local.go +++ b/cmd/podman/main_local.go @@ -69,7 +69,7 @@ func init() { rootCmd.PersistentFlags().StringArrayVar(&MainGlobalOpts.StorageOpts, "storage-opt", []string{}, "Used to pass an option to the storage driver") rootCmd.PersistentFlags().BoolVar(&MainGlobalOpts.Syslog, "syslog", false, "Output logging information to syslog as well as the console") - rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.TmpDir, "tmpdir", "", "Path to the tmp directory") + rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.TmpDir, "tmpdir", "", "Path to the tmp directory for libpod state content.\n\nNote: use the environment variable 'TMPDIR' to change the temporary storage location for container images, '/var/tmp'.\n") rootCmd.PersistentFlags().BoolVar(&MainGlobalOpts.Trace, "trace", false, "Enable opentracing output") } |