Skip to content

Instantly share code, notes, and snippets.

@tesla-srt
Last active August 26, 2023 04:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tesla-srt/58bc795e04f96319c5699c5a9980fc90 to your computer and use it in GitHub Desktop.
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
#!/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