You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/debian/jellyfin.upstart

21 lines
364 B

description "jellyfin daemon"
start on (local-filesystems and net-device-up IFACE!=lo)
stop on runlevel [!2345]
console log
respawn
respawn limit 10 5
kill timeout 20
script
set -x
echo "Starting $UPSTART_JOB"
# Log file
logger -t "$0" "DEBUG: `set`"
exec /usr/bin/jellyfin start
exec /usr/bin/dotnet /usr/lib/jellyfin/bin/EmbyServer.dll
end script