Displaying 3 results from an estimated 3 matches for "dbfd10cad".
2020 Apr 02
0
Re: [PATCH virt-v2v] v2v: Allow temporary directory to be set on a global basis.
...var/tmp is persistent unlike /tmp (which
can be tmpfs-backed on some distros/setups), meaning old temporary
files will linger way more
That said, it is not clear to me why /var/tmp should be shared among
containers.
> diff --git a/docs/virt-v2v.pod b/docs/virt-v2v.pod
> index ed95fdc8e..dbfd10cad 100644
> --- a/docs/virt-v2v.pod
> +++ b/docs/virt-v2v.pod
> @@ -1206,8 +1206,9 @@ possible.
>
> =head3 Disk space
>
> -Virt-v2v places potentially large temporary files in C<$TMPDIR> (which
> -is F</var/tmp> if you don't set it). Using tmpfs is a bad i...
2020 Apr 02
6
[PATCH virt-v2v] v2v: Allow temporary directory to be set on a global basis.
...| 5 ++---
v2v/python_script.ml | 3 +--
v2v/utils.ml | 8 ++++++--
v2v/utils.mli | 4 ++++
v2v/v2v.ml | 15 ++++++---------
12 files changed, 44 insertions(+), 33 deletions(-)
diff --git a/docs/virt-v2v.pod b/docs/virt-v2v.pod
index ed95fdc8e..dbfd10cad 100644
--- a/docs/virt-v2v.pod
+++ b/docs/virt-v2v.pod
@@ -1206,8 +1206,9 @@ possible.
=head3 Disk space
-Virt-v2v places potentially large temporary files in C<$TMPDIR> (which
-is F</var/tmp> if you don't set it). Using tmpfs is a bad idea.
+Virt-v2v places potentially large...
2020 Apr 02
3
Re: [PATCH virt-v2v] v2v: Allow temporary directory to be set on a global basis.
...ume mounts. So if the
administrator of the cluster set it up with NFS, then that's what you
have to use. (However using NFS for /var/tmp is still wrong).
That's the problem we're trying to solve.
> > diff --git a/docs/virt-v2v.pod b/docs/virt-v2v.pod
> > index ed95fdc8e..dbfd10cad 100644
> > --- a/docs/virt-v2v.pod
> > +++ b/docs/virt-v2v.pod
> > @@ -1206,8 +1206,9 @@ possible.
> >
> > =head3 Disk space
> >
> > -Virt-v2v places potentially large temporary files in C<$TMPDIR> (which
> > -is F</var/tmp> if you do...