Create setup.bash
This commit is contained in:
parent
3e67cf4087
commit
7f039794d8
1 changed files with 38 additions and 0 deletions
38
ra-rom-downloader/setup.bash
Normal file
38
ra-rom-downloader/setup.bash
Normal file
|
@ -0,0 +1,38 @@
|
|||
#!/usr/bin/with-contenv bash
|
||||
RAHASHER_PATH="/usr/local/RALibretro"
|
||||
echo "************ install dependencies ************"
|
||||
echo "************ install and upgrade packages ************"
|
||||
apt-get update
|
||||
apt-get upgrade -y
|
||||
apt-get install -y \
|
||||
jq \
|
||||
unzip \
|
||||
gzip \
|
||||
git \
|
||||
p7zip-full \
|
||||
curl \
|
||||
unrar \
|
||||
axel \
|
||||
zip \
|
||||
python3-pip
|
||||
|
||||
echo "************ RAHasher installation ************"
|
||||
mkdir -p ${RAHASHER_PATH}
|
||||
wget "https://github.com/RetroAchievements/RALibretro/releases/download/1.4.0/RAHasher-x64-Linux-1.6.0.zip" -O "${RAHASHER_PATH}/rahasher.zip"
|
||||
unzip "${RAHASHER_PATH}/rahasher.zip" -d ${RAHASHER_PATH}
|
||||
chmod -R 777 ${RAHASHER_PATH}
|
||||
|
||||
mkdir -p /custom-services.d
|
||||
echo "Download Downloader service..."
|
||||
curl https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/ra-rom-downloader/Downloader.bash -o /custom-services.d/Downloader
|
||||
echo "Done"
|
||||
chmod 777 /custom-services.d/Downloader
|
||||
|
||||
if [ ! -f /config/extended.conf ]; then
|
||||
echo "Download Extended config..."
|
||||
curl https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/radarr/extended.conf -o /config/extended.conf
|
||||
chmod 777 /config/extended.conf
|
||||
echo "Done"
|
||||
fi
|
||||
|
||||
exit
|
Loading…
Reference in a new issue