Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/6d89c2de129de2189ca9d8f5435b5cfb2d6ae8e0?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
14 additions and
9 deletions
@ -55,16 +55,21 @@ function default_settings() {
function update_script( ) {
function update_script( ) {
header_info
header_info
if [ [ ! -d /opt/sabnzbd ] ] ; then msg_error " No ${ APP } Installation Found! " ; exit; fi
if [ [ ! -d /opt/sabnzbd ] ] ; then msg_error " No ${ APP } Installation Found! " ; exit; fi
msg_info " Updating $APP "
systemctl stop sabnzbd.service
RELEASE = $( curl -s https://api.github.com/repos/sabnzbd/sabnzbd/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }' )
RELEASE = $( curl -s https://api.github.com/repos/sabnzbd/sabnzbd/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }' )
if [ [ ! -f /opt/${ APP } _version.txt ] ] || [ [ " ${ RELEASE } " != " $( cat /opt/${ APP } _version.txt) " ] ] ; then
msg_info " Updating $APP to ${ RELEASE } "
systemctl stop sabnzbd.service
tar zxvf <( curl -fsSL https://github.com/sabnzbd/sabnzbd/releases/download/$RELEASE /SABnzbd-${ RELEASE } -src.tar.gz) & >/dev/null
tar zxvf <( curl -fsSL https://github.com/sabnzbd/sabnzbd/releases/download/$RELEASE /SABnzbd-${ RELEASE } -src.tar.gz) & >/dev/null
\c p -r SABnzbd-${ RELEASE } /* /opt/sabnzbd & >/dev/null
\c p -r SABnzbd-${ RELEASE } /* /opt/sabnzbd & >/dev/null
rm -rf SABnzbd-${ RELEASE }
rm -rf SABnzbd-${ RELEASE }
cd /opt/sabnzbd
cd /opt/sabnzbd
python3 -m pip install -r requirements.txt & >/dev/null
python3 -m pip install -r requirements.txt & >/dev/null
echo " ${ RELEASE } " >/opt/${ APP } _version.txt
systemctl start sabnzbd.service
systemctl start sabnzbd.service
msg_ok " Updated $APP "
msg_ok " Updated ${ APP } to ${ RELEASE } "
else
msg_info " No update required. ${ APP } is already at ${ RELEASE } "
fi
exit
exit
}
}