diff options
| author | Joshua Boniface <joshua@boniface.me> | 2018-12-12 19:37:40 -0500 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2018-12-12 19:37:40 -0500 |
| commit | 917ccad0abfeb41f000459d6be24412774a029dc (patch) | |
| tree | 1dffd389d46dff56815211c06fae38bacf964cff /debian | |
| parent | 629bedc6e8517adcb338bdd99a1d8ec81de3ab80 (diff) | |
Improve formatting and add comments
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/conf/jellyfin | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/debian/conf/jellyfin b/debian/conf/jellyfin index 33b6eee82..5c26d12c3 100644 --- a/debian/conf/jellyfin +++ b/debian/conf/jellyfin @@ -11,13 +11,26 @@ # This is a POSIX shell fragment # +# # General options +# + +# Path to the jellyfin.dll executable JELLYFIN_EXE="/usr/lib/jellyfin/bin/jellyfin.dll" +# Data directory JELLYFIN_DATA="/var/lib/jellyfin" +# Restart script for in-app server control JELLYFIN_RESTART_SCRIPT="/usr/lib/jellyfin/restart.sh" +# Additional options for the binary JELLYFIN_ADD_OPTS="" -# init/upstart options +# +# SysV init/Upstart options +# + +# Application username JELLYFIN_USER="jellyfin" +# .NET Core runtime binary JELLYFIN_DOTNET="/usr/bin/dotnet" +# Full application command JELLYFIN_COMMAND="$JELLYFIN_EXE -programdata $JELLYFIN_DATA -restartpath $JELLYFIN_RESTART_SCRIPT $JELLYFIN_ADD_OPTS" |
