aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdebian/bin/restart.sh10
-rwxr-xr-xfedora/restart.sh10
2 files changed, 16 insertions, 4 deletions
diff --git a/debian/bin/restart.sh b/debian/bin/restart.sh
index 46a70c497..6aea24ee4 100755
--- a/debian/bin/restart.sh
+++ b/debian/bin/restart.sh
@@ -34,13 +34,19 @@ else
fi
fi
+if type sudo >/dev/null 2>&1; then
+ sudo_command=sudo
+else
+ sudo_command=
+fi
+
echo "Detected service control platform '$cmd'; using it to restart Jellyfin..."
case $cmd in
'systemctl')
- echo "sleep 0.5; /usr/bin/sudo systemctl start jellyfin" | at now
+ echo "sleep 0.5; $sudo_command systemctl start jellyfin" | at now
;;
'service')
- echo "sleep 0.5; /usr/bin/sudo service jellyfin start" | at now
+ echo "sleep 0.5; $sudo_command service jellyfin start" | at now
;;
'sysv')
echo "sleep 0.5; /usr/bin/sudo /etc/init.d/jellyfin start" | at now
diff --git a/fedora/restart.sh b/fedora/restart.sh
index 46a70c497..6aea24ee4 100755
--- a/fedora/restart.sh
+++ b/fedora/restart.sh
@@ -34,13 +34,19 @@ else
fi
fi
+if type sudo >/dev/null 2>&1; then
+ sudo_command=sudo
+else
+ sudo_command=
+fi
+
echo "Detected service control platform '$cmd'; using it to restart Jellyfin..."
case $cmd in
'systemctl')
- echo "sleep 0.5; /usr/bin/sudo systemctl start jellyfin" | at now
+ echo "sleep 0.5; $sudo_command systemctl start jellyfin" | at now
;;
'service')
- echo "sleep 0.5; /usr/bin/sudo service jellyfin start" | at now
+ echo "sleep 0.5; $sudo_command service jellyfin start" | at now
;;
'sysv')
echo "sleep 0.5; /usr/bin/sudo /etc/init.d/jellyfin start" | at now