mirror of https://github.com/tteck/Proxmox.git
Update haos_vm.sh
This commit is contained in:
parent
d1cc265e01
commit
5490822e86
|
@ -106,18 +106,10 @@ echo -e "${CHECKMARK} \e[1;92m Downloading disk image... \e[0m"
|
|||
wget -q --show-progress $URL
|
||||
echo -en "\e[1A\e[0K"
|
||||
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"
|
||||
case $FILE in
|
||||
*"gz") gunzip -f $FILE ;;
|
||||
*"zip") unzip -o $FILE;;
|
||||
*"zip") gunzip -f -S .zip $FILE ;;
|
||||
*"xz") xz -d $FILE ;;
|
||||
*) die "Unable to handle file extension '${FILE##*.}'.";;
|
||||
esac
|
||||
|
|
Loading…
Reference in New Issue