2018-12-09 23:45:08 +00:00
|
|
|
description "emby-server daemon"
|
2018-08-08 05:18:59 +00:00
|
|
|
|
|
|
|
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`"
|
2018-12-09 23:45:08 +00:00
|
|
|
exec /usr/bin/emby-server start
|
|
|
|
end script
|
|
|
|
|
|
|
|
post-stop script
|
|
|
|
exec /usr/bin/emby-server clear
|
2018-08-08 05:18:59 +00:00
|
|
|
end script
|