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 | |
# Install opus-tools | |
# Latest releases: opus 1.3.1, opus-tools 0.2, opusfile 0.11, libopusenc 0.2.1 | |
set -e | |
set -o pipefail | |
# Install packages needed | |
apt update > /dev/null 2>&1 && apt install -y curl libflac-dev > /dev/null 2>&1 |
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 | |
# Docker Setup for streaming backend using cloudbox, intended to be run as root : | |
## To Do : Pass arguments to script if reboot is necessary, edit only the necessary line in plex-autoscan config file. | |
KERNEL=$(uname -r) | |
BASE=4.10 | |
echo $KERNEL | |
if [ "$KERNEL" != "$BASE" ]; then | |
tput setaf 1; echo "You don't need to reboot, continuing install" && tput setaf 7; |