2023-07-07 18:07:40 +02:00
|
|
|
#!/usr/bin/with-contenv bash
|
2023-07-07 18:18:53 +02:00
|
|
|
scriptVersion="1.0"
|
2023-07-07 18:07:40 +02:00
|
|
|
|
|
|
|
######## Package dependencies installation
|
|
|
|
InstallRequirements () {
|
|
|
|
echo "Installing Required Packages..."
|
2023-07-07 18:26:01 +02:00
|
|
|
apk add -U --update --no-cache curl jq python3-dev py3-pip git ffmpeg
|
|
|
|
pip install --upgrade --no-cache-dir -U yq
|
2023-07-07 18:07:40 +02:00
|
|
|
echo "Done"
|
2023-07-07 18:26:01 +02:00
|
|
|
if [ -d /config/scripts/sma ]; then
|
|
|
|
rm -rf /config/scripts/sma
|
2023-07-07 18:07:40 +02:00
|
|
|
fi
|
2023-07-07 18:26:01 +02:00
|
|
|
echo "************ setup SMA ************"
|
|
|
|
echo "************ setup directory ************"
|
|
|
|
mkdir -p /config/scripts/sma
|
|
|
|
echo "************ download repo ************"
|
|
|
|
git clone https://github.com/mdhiggins/sickbeard_mp4_automator.git /config/scripts/sma
|
|
|
|
mkdir -p /config/scripts/sma/config
|
|
|
|
echo "************ create logging file ************"
|
|
|
|
mkdir -p /config/scripts/sma/config
|
|
|
|
touch /config/scripts/sma/config/sma.log
|
|
|
|
echo "************ install pip dependencies ************"
|
|
|
|
pip install --upgrade pip --no-cache-dir
|
|
|
|
pip install -r /config/scripts/sma/setup/requirements.txt --no-cache-dir
|
|
|
|
chmod 777 -R /config/scripts/sma
|
2023-07-07 18:07:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
InstallRequirements
|
|
|
|
|
2023-07-07 18:18:53 +02:00
|
|
|
mkdir -p /config/scripts
|
|
|
|
chmod 777 /config/scripts
|
2023-07-07 18:26:01 +02:00
|
|
|
echo "Downloading SMA config: /config/scripts/sma.ini"
|
2023-07-07 18:11:01 +02:00
|
|
|
curl https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/sabnzbd/sma.ini -O /config/scripts/sma.ini
|
2023-07-07 18:26:01 +02:00
|
|
|
echo "Downloading Video script config: /config/scripts/video.bash"
|
2023-07-07 18:11:01 +02:00
|
|
|
curl https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/sabnzbd/video.bash -O /config/scripts/video.bash
|
2023-07-07 18:18:53 +02:00
|
|
|
chmod 777 -R /config/scripts
|
2023-07-07 18:07:40 +02:00
|
|
|
exit
|