mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
a2c1ec0de3
Signed-off-by: Thomas Büttner <thomas@tartaros.tech>
6 lines
157 B
Bash
Executable File
6 lines
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 |