Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/a3ef98e1f8cc45f6b42cdebadd0553d79fdd7eaa?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
14 additions and
21 deletions
@ -52,23 +52,16 @@ function default_settings() {
function update_script( ) {
header_info
if [ [ ! -f /etc/apt/sources.list.d/sonarr.list ] ] ; then msg_error " No ${ APP } Installation Found! " ; exit; fi
read -r -p "Are you updating Sonarr v4? <y/N> " prompt
if [ [ " ${ prompt ,, } " = ~ ^( y| yes) $ ] ] ; then
msg_info " Updating $APP v4 "
systemctl stop sonarr.service
wget -q -O SonarrV4.tar.gz 'https://services.sonarr.tv/v1/download/develop/latest?version=4&os=linux'
tar -xzf SonarrV4.tar.gz
cp -r Sonarr/* /usr/lib/sonarr/bin
rm -rf Sonarr SonarrV4.tar.gz
systemctl start sonarr.service
msg_ok " Updated $APP v4 "
exit
fi
msg_info " Updating $APP LXC "
apt-get update & >/dev/null
apt-get -y upgrade & >/dev/null
msg_ok " Updated $APP LXC "
if [ [ ! -d /opt/Sonarr ] ] ; then msg_error " No ${ APP } Installation Found! " ; exit; fi
msg_info " Updating $APP v4 "
systemctl stop sonarr.service
wget -q -O SonarrV4.tar.gz 'https://services.sonarr.tv/v1/download/main/latest?version=4&os=linux&arch=x64'
tar -xzf SonarrV4.tar.gz
rm -rf /opt/Sonarr
mv Sonarr /opt
rm -rf SonarrV4.tar.gz
systemctl start sonarr.service
msg_ok " Updated $APP v4 "
exit
}