mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-04 22:54:38 +01:00
6 lines
No EOL
157 B
Bash
Executable file
6 lines
No EOL
157 B
Bash
Executable file
#!/bin/sh
|
|
|
|
NAME=jellyfin
|
|
restart_cmd="/usr/bin/systemctl restart ${NAME}"
|
|
echo "sleep 2; sudo $restart_cmd > /dev/null 2>&1" | at now > /dev/null 2>&1
|
|
exit 0 |