Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/5490822e8656b5e0a978b125e24e7fdbf281b9c6?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
11 deletions
@ -106,19 +106,11 @@ echo -e "${CHECKMARK} \e[1;92m Downloading disk image... \e[0m"
wget -q --show-progress $URL
wget -q --show-progress $URL
echo -en "\e[1A\e[0K"
echo -en "\e[1A\e[0K"
FILE = $( basename $URL )
FILE = $( basename $URL )
if [ [ $FILE = = *.zip ] ] ; then
echo -e " ${ CHECKMARK } \e[1;92m Checking for unzip command... \e[0m "
if ! command -v unzip & > /dev/null; then
echo -e " ${ CHECKMARK } \e[1;92m Installing Unzip... \e[0m "
apt-get update >/dev/null
apt-get -qqy install unzip & >/dev/null
fi
fi
echo -e " ${ CHECKMARK } \e[1;92m Extracting disk image... \e[0m "
echo -e " ${ CHECKMARK } \e[1;92m Extracting disk image... \e[0m "
case $FILE in
case $FILE in
*"gz" ) gunzip -f $FILE ; ;
*"gz" ) gunzip -f $FILE ; ;
*"zip" ) unzip -o $FILE ; ;
*"zip" ) gunzip -f -S .zip $FILE ; ;
*"xz" ) xz -d $FILE ; ;
*"xz" ) xz -d $FILE ; ;
*) die " Unable to handle file extension ' ${ FILE ##*. } '. " ; ;
*) die " Unable to handle file extension ' ${ FILE ##*. } '. " ; ;
esac
esac
STORAGE_TYPE = $( pvesm status -storage $STORAGE | awk 'NR>1 {print $2}' )
STORAGE_TYPE = $( pvesm status -storage $STORAGE | awk 'NR>1 {print $2}' )