summaryrefslogtreecommitdiff
path: root/libpod/options.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-01-07 15:06:17 -0500
committerGitHub <noreply@github.com>2021-01-07 15:06:17 -0500
commit6c132b78f1338c01f60f0fd509710813e2832550 (patch)
tree029911e38ed5dce8ae9fc33651425e1adff485a9 /libpod/options.go
parent3cf41c4a7349d2f2529ce94801de2de9898ae27f (diff)
parentd9ebbbfe5b6a22e61091fe764ae2875aa0bf8064 (diff)
downloadpodman-6c132b78f1338c01f60f0fd509710813e2832550.tar.gz
podman-6c132b78f1338c01f60f0fd509710813e2832550.tar.bz2
podman-6c132b78f1338c01f60f0fd509710813e2832550.zip
Merge pull request #8771 from rhatdan/run
Switch references of /var/run -> /run
Diffstat (limited to 'libpod/options.go')
-rw-r--r--libpod/options.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/options.go b/libpod/options.go
index 8100eee62..ef7db3235 100644
--- a/libpod/options.go
+++ b/libpod/options.go
@@ -306,7 +306,7 @@ func WithDefaultMountsFile(mountsFile string) RuntimeOption {
// WithTmpDir sets the directory that temporary runtime files which are not
// expected to survive across reboots will be stored.
-// This should be located on a tmpfs mount (/tmp or /var/run for example).
+// This should be located on a tmpfs mount (/tmp or /run for example).
func WithTmpDir(dir string) RuntimeOption {
return func(rt *Runtime) error {
if rt.valid {