aboutsummaryrefslogtreecommitdiff
path: root/debian/bin
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-04-09 11:55:27 -0400
committerJoshua M. Boniface <joshua@boniface.me>2020-04-09 11:55:44 -0400
commit7eac3684862380a857edc6c7e98c20f25c5b9a03 (patch)
treeced0d91e6dc3a11585d2a857e55797c324b4b1cc /debian/bin
parent762a46045ee784c500f7fe4c2c0131ca83e8b50e (diff)
Fix missing restart script
Diffstat (limited to 'debian/bin')
-rwxr-xr-xdebian/bin/restart.sh36
1 files changed, 36 insertions, 0 deletions
diff --git a/debian/bin/restart.sh b/debian/bin/restart.sh
new file mode 100755
index 000000000..9b64b6d72
--- /dev/null
+++ b/debian/bin/restart.sh
@@ -0,0 +1,36 @@
+#!/bin/bash
+
+# restart.sh - Jellyfin server restart script
+# Part of the Jellyfin project (https://github.com/jellyfin)
+#
+# This script restarts the Jellyfin daemon on Linux when using
+# the Restart button on the admin dashboard. It supports the
+# systemctl, service, and traditional /etc/init.d (sysv) restart
+# methods, chosen automatically by which one is found first (in
+# that order).
+#
+# This script is used by the Debian/Ubuntu/Fedora/CentOS packages.
+
+get_service_command() {
+ for command in systemctl service; do
+ if which $command &>/dev/null; then
+ echo $command && return
+ fi
+ done
+ echo "sysv"
+}
+
+cmd="$( get_service_command )"
+echo "Detected service control platform '$cmd'; using it to restart Jellyfin..."
+case $cmd in
+ 'systemctl')
+ echo "sleep 2; /usr/bin/sudo $( which systemctl ) restart jellyfin" | at now
+ ;;
+ 'service')
+ echo "sleep 2; /usr/bin/sudo $( which service ) jellyfin restart" | at now
+ ;;
+ 'sysv')
+ echo "sleep 2; /usr/bin/sudo /etc/init.d/jellyfin restart" | at now
+ ;;
+esac
+exit 0