From cad464a8c8a454879ebc919dec3c5830b7ffe32b Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Mon, 29 Apr 2024 13:37:34 +0200 Subject: [PATCH] storage.original_video_files is now required --- start.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/start.sh b/start.sh index a179e29..25a1019 100755 --- a/start.sh +++ b/start.sh @@ -110,6 +110,9 @@ update_config() { yq eval "del(.storage.videos)" -i /app/data/production.yaml yq eval "del(.transcoding.webtorrent)" -i /app/data/production.yaml yq eval ".transcoding.web_videos.enabled = true" -i /app/data/production.yaml + + # changes for 6.1.0 + yq eval ".storage.original_video_files = \"/app/data/storage/original_video_files/\"" -i /app/data/production.yaml } echo "==> Changing ownership"