Create setup.bash
This commit is contained in:
parent
5da6327895
commit
b12f3e0bdd
1 changed files with 40 additions and 0 deletions
40
sonarr/setup.bash
Normal file
40
sonarr/setup.bash
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
#!/usr/bin/with-contenv bash
|
||||||
|
SMA_PATH="usr/local/sma"
|
||||||
|
|
||||||
|
echo "************ install packages ************" && \
|
||||||
|
apk add -U --update --no-cache \
|
||||||
|
flac \
|
||||||
|
opus-tools \
|
||||||
|
jq \
|
||||||
|
git \
|
||||||
|
wget \
|
||||||
|
mkvtoolnix \
|
||||||
|
python3-dev \
|
||||||
|
libc-dev \
|
||||||
|
py3-pip \
|
||||||
|
gcc \
|
||||||
|
ffmpeg \
|
||||||
|
yt-dlp && \
|
||||||
|
echo "************ install python packages ************" && \
|
||||||
|
pip install --upgrade --no-cache-dir -U \
|
||||||
|
excludarr \
|
||||||
|
yq && \
|
||||||
|
echo "************ setup SMA ************" && \
|
||||||
|
echo "************ setup directory ************" && \
|
||||||
|
mkdir -p ${SMA_PATH} && \
|
||||||
|
echo "************ download repo ************" && \
|
||||||
|
git clone https://github.com/mdhiggins/sickbeard_mp4_automator.git ${SMA_PATH} && \
|
||||||
|
mkdir -p ${SMA_PATH}/config && \
|
||||||
|
echo "************ create logging file ************" && \
|
||||||
|
mkdir -p ${SMA_PATH}/config && \
|
||||||
|
touch ${SMA_PATH}/config/sma.log && \
|
||||||
|
chgrp users ${SMA_PATH}/config/sma.log && \
|
||||||
|
chmod g+w ${SMA_PATH}/config/sma.log && \
|
||||||
|
echo "************ install pip dependencies ************" && \
|
||||||
|
python3 -m pip install --user --upgrade pip && \
|
||||||
|
pip3 install -r ${SMA_PATH}/setup/requirements.txt && \
|
||||||
|
echo "************ install recyclarr ************" && \
|
||||||
|
mkdir -p /recyclarr && \
|
||||||
|
wget "https://github.com/recyclarr/recyclarr/releases/latest/download/recyclarr-linux-musl-x64.tar.xz" -O "/recyclarr/recyclarr.tar.xz" && \
|
||||||
|
tar -xf /recyclarr/recyclarr.tar.xz -C /recyclarr &>/dev/null && \
|
||||||
|
chmod 777 /recyclarr/recyclarr
|
Loading…
Reference in a new issue