aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorNick <20588554+nicknsy@users.noreply.github.com>2023-10-18 19:27:05 -0700
committerNick <20588554+nicknsy@users.noreply.github.com>2023-10-18 19:27:05 -0700
commitcd662506a1f63f9b20e7f5caa9b671eb3d71ea5a (patch)
treeb58f7158e21e7ed21d77b0f0abfce23d796b3fe3 /debian
parentc7feea27fde8af60984c8fe41444dc245dbde395 (diff)
parentde08d38a6f2a6e773fa1000574e08322605b56d3 (diff)
Merge branch 'master' into trickplay
Diffstat (limited to 'debian')
-rw-r--r--debian/conf/jellyfin2
-rw-r--r--debian/jellyfin.init1
-rwxr-xr-xdebian/rules4
3 files changed, 6 insertions, 1 deletions
diff --git a/debian/conf/jellyfin b/debian/conf/jellyfin
index 912996755..aec1d4d10 100644
--- a/debian/conf/jellyfin
+++ b/debian/conf/jellyfin
@@ -47,4 +47,4 @@ JELLYFIN_ADDITIONAL_OPTS=""
# Application username
JELLYFIN_USER="jellyfin"
# Full application command
-JELLYFIN_ARGS="$JELLYFIN_WEB_OPT $JELLYFIN_FFMPEG_OPT $JELLYFIN_SERVICE_OPT $JELLYFIN_NOWEBAPP_OPT $JELLFIN_ADDITIONAL_OPTS"
+JELLYFIN_ARGS="$JELLYFIN_WEB_OPT $JELLYFIN_FFMPEG_OPT $JELLYFIN_SERVICE_OPT $JELLYFIN_NOWEBAPP_OPT $JELLFIN_ADDITIONAL_OPTS --datadir $JELLYFIN_DATA_DIR --configdir $JELLYFIN_CONFIG_DIR --logdir $JELLYFIN_LOG_DIR --cachedir $JELLYFIN_CACHE_DIR"
diff --git a/debian/jellyfin.init b/debian/jellyfin.init
index 7f5642bac..784536d87 100644
--- a/debian/jellyfin.init
+++ b/debian/jellyfin.init
@@ -1,3 +1,4 @@
+#!/bin/sh
### BEGIN INIT INFO
# Provides: Jellyfin Media Server
# Required-Start: $local_fs $network
diff --git a/debian/rules b/debian/rules
index f55b1807e..069d48aad 100755
--- a/debian/rules
+++ b/debian/rules
@@ -25,6 +25,10 @@ ifeq ($(HOST_ARCH),arm64)
# Building ARM
DOTNETRUNTIME := debian-arm64
endif
+ifeq ($(HOST_ARCH),aarch64)
+ # Building ARM
+ DOTNETRUNTIME := debian-arm64
+endif
export DH_VERBOSE=1
export DOTNET_CLI_TELEMETRY_OPTOUT=1