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
Most systems that have a separate /tmp mounted don't have the disk space in order to properly unpack and import an image in /tmp. The export script doesn't have this because it calls
TARGET=`mktemp -d --tmpdir=${EXPORT_DIR}`
while the import script calls
TARGET=`mktemp -d`
I'd like to change this anti-symmetry by doing one (and only one) of the following:
Change the import script to TARGET=mktemp -d --tmpdir=${EXPORT_DIR}``
Set IMPORT_DIR in common.sh and use that in the import script.
Thoughts?
The text was updated successfully, but these errors were encountered:
Most systems that have a separate
/tmp
mounted don't have the disk space in order to properly unpack and import an image in/tmp
. The export script doesn't have this because it callswhile the import script calls
I'd like to change this anti-symmetry by doing one (and only one) of the following:
import
script toTARGET=
mktemp -d --tmpdir=${EXPORT_DIR}``IMPORT_DIR
incommon.sh
and use that in theimport
script.Thoughts?
The text was updated successfully, but these errors were encountered: