Last active
August 26, 2023 04:40
-
-
Save tesla-srt/58bc795e04f96319c5699c5a9980fc90 to your computer and use it in GitHub Desktop.
[EMBY UPDATE] A short script to shutdown Emby-Server download latest package and install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
OF=$(wget -q -O- https://api.github.com/repos/MediaBrowser/Emby.Releases/releases/latest | jq -r '.name') | |
FTR="emby-server-deb_"$OF"_amd64.deb" | |
STR="https://github.com/MediaBrowser/Emby.Releases/releases/latest/download/"$FTR | |
systemctl stop emby-server | |
wget $STR | |
dpkg -i $FTR | |
systemctl start emby-server | |
rm $FTR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment