24 lines
369 B
Plaintext
24 lines
369 B
Plaintext
description "emby-server 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/emby-server start
|
|
end script
|
|
|
|
post-stop script
|
|
exec /usr/bin/emby-server clear
|
|
end script
|