From 3913a5a5b4ca39e0d28eeb282aeea44c81f73494 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 28 Oct 2024 02:38:45 -0400 Subject: [PATCH] Add TEMPDIR option to environments Allows reconfiguration of jellyfin/jellyfin#12226 by the administrator if required for Debuntu. Commented by default to preserve default operation as this is a DotNET variable. --- debian/conf/jellyfin | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/debian/conf/jellyfin b/debian/conf/jellyfin index af460fe..9efe9b0 100644 --- a/debian/conf/jellyfin +++ b/debian/conf/jellyfin @@ -18,6 +18,11 @@ JELLYFIN_CONFIG_DIR="/etc/jellyfin" JELLYFIN_LOG_DIR="/var/log/jellyfin" JELLYFIN_CACHE_DIR="/var/cache/jellyfin" +# temporary directory path; used to construct paths for short-lived temporary files +# the old default was $JELLYFIN_CACHE_DIR/temp; use that to restore previous behaviour +# otherwise, leave this commented +#TEMPDIR="/tmp" + # web client path, installed by the jellyfin-web package JELLYFIN_WEB_OPT="--webdir=/usr/share/jellyfin/web"