Closed userdocs closed 6 years ago
The script works and I think I have commented most critical components. There was one particular error I experienced which I am unsure of the consequences of my solution.
This command failed:
apt-get install -y libmono-cil-dev curl mediainfo >/dev/null 2>&1
and the error required this command to fix it:
dpkg --configure -a
I had done a few system updates and Quickbox updates before I encountered this error so I am unsure what the cause of it was. All I do know is that I had to run it in order to install mono.
Could you push this to the development branch instead
Closing due to age. We're having this adjusted.
This pull request is a work in progress to demonstrate an idea of how to approach the installation of apps.
1: The current radarr script is broken.
The main reason being that is does not create the required
/home/${username}/.config/Radarr
directory causing the script to error:I think this is because the command below needs the folder to already exist:
2: The idea of a more user friendly template method requiring less knowledge of the script and instead just editing some required variables near the top of the script.
This introduces some generic templates that are edited on a per app basis and moves towards a true templatable solution for additional apps.