Don't assume the /tmp folder is where the user wants to place the scratch directory (#5948)

This commit is contained in:
Trenton H 2024-02-28 14:46:24 -08:00 committed by GitHub
parent 86263a52ea
commit 3d8de50b5a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -90,13 +90,13 @@ initialize() {
fi
done
local -r tmp_dir="/tmp/paperless"
echo "Creating directory ${tmp_dir}"
local -r tmp_dir="${PAPERLESS_SCRATCH_DIR:=/tmp/paperless}"
echo "Creating directory scratch directory ${tmp_dir}"
mkdir --parents "${tmp_dir}"
set +e
echo "Adjusting permissions of paperless files. This may take a while."
chown -R paperless:paperless ${tmp_dir}
chown -R paperless:paperless "${tmp_dir}"
for dir in \
"${export_dir}" \
"${DATA_DIR}" \