You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, our Qubes isolation provider and the PixelsToPdf converter use /tmp/dangerzone and /tmp/page* paths as their temporary storage space. The problem is that these paths are not cleared after a conversion, leading to stale files left behind.
The text was updated successfully, but these errors were encountered:
Extend the PixelsToPDF converter by adding an additional `tempdir`
argument. This argument can be used to make the conversion use a
different temporary directory other than `/tmp`.
For containers, this extra arguments makes no difference, as it won't be
used. For Qubes, this argument will allow storing files in a temporary
dir that will be cleaned up once the conversion completes. Previously,
these files would linger in the user's `/tmp`.
Refs #575
Create a temporary dir before the conversion begins, and store every
file necessary for the conversion there. We are mostly concerned about
the second stage of the conversion, which runs in the host. The first
stage runs in a disposable qube and cleanup is implicit.
Fixes#575
Currently, our Qubes isolation provider and the
PixelsToPdf
converter use/tmp/dangerzone
and/tmp/page*
paths as their temporary storage space. The problem is that these paths are not cleared after a conversion, leading to stale files left behind.The text was updated successfully, but these errors were encountered: