Remove useless which(1) calls in restart.sh
at(1) runs commandlines with /bin/sh anyway, which resolves paths. No need to do it ourselves.
This commit is contained in:
parent
a4e1732e35
commit
ce82932c9a
4
debian/bin/restart.sh
vendored
4
debian/bin/restart.sh
vendored
|
@ -37,10 +37,10 @@ fi
|
|||
echo "Detected service control platform '$cmd'; using it to restart Jellyfin..."
|
||||
case $cmd in
|
||||
'systemctl')
|
||||
echo "sleep 0.5; /usr/bin/sudo $( which systemctl ) start jellyfin" | at now
|
||||
echo "sleep 0.5; /usr/bin/sudo systemctl start jellyfin" | at now
|
||||
;;
|
||||
'service')
|
||||
echo "sleep 0.5; /usr/bin/sudo $( which service ) jellyfin start" | at now
|
||||
echo "sleep 0.5; /usr/bin/sudo service jellyfin start" | at now
|
||||
;;
|
||||
'sysv')
|
||||
echo "sleep 0.5; /usr/bin/sudo /etc/init.d/jellyfin start" | at now
|
||||
|
|
|
@ -37,10 +37,10 @@ fi
|
|||
echo "Detected service control platform '$cmd'; using it to restart Jellyfin..."
|
||||
case $cmd in
|
||||
'systemctl')
|
||||
echo "sleep 0.5; /usr/bin/sudo $( which systemctl ) start jellyfin" | at now
|
||||
echo "sleep 0.5; /usr/bin/sudo systemctl start jellyfin" | at now
|
||||
;;
|
||||
'service')
|
||||
echo "sleep 0.5; /usr/bin/sudo $( which service ) jellyfin start" | at now
|
||||
echo "sleep 0.5; /usr/bin/sudo service jellyfin start" | at now
|
||||
;;
|
||||
'sysv')
|
||||
echo "sleep 0.5; /usr/bin/sudo /etc/init.d/jellyfin start" | at now
|
||||
|
|
Loading…
Reference in New Issue
Block a user