mirror of https://github.com/tteck/Proxmox.git
parent
7122a465a1
commit
371cde2d8a
|
@ -135,7 +135,6 @@ echo_default() {
|
||||||
echo -e "${DGN}Using Bridge: ${BGN}vmbr0${CL}"
|
echo -e "${DGN}Using Bridge: ${BGN}vmbr0${CL}"
|
||||||
echo -e "${DGN}Using Static IP Address: ${BGN}dhcp${CL}"
|
echo -e "${DGN}Using Static IP Address: ${BGN}dhcp${CL}"
|
||||||
echo -e "${DGN}Using Gateway Address: ${BGN}Default${CL}"
|
echo -e "${DGN}Using Gateway Address: ${BGN}Default${CL}"
|
||||||
echo -e "${DGN}APT-Cacher IP: ${BGN}None${CL}"
|
|
||||||
echo -e "${DGN}Disable IPv6: ${BGN}No${CL}"
|
echo -e "${DGN}Disable IPv6: ${BGN}No${CL}"
|
||||||
echo -e "${DGN}Using Interface MTU Size: ${BGN}Default${CL}"
|
echo -e "${DGN}Using Interface MTU Size: ${BGN}Default${CL}"
|
||||||
echo -e "${DGN}Using DNS Search Domain: ${BGN}Host${CL}"
|
echo -e "${DGN}Using DNS Search Domain: ${BGN}Host${CL}"
|
||||||
|
@ -341,18 +340,6 @@ advanced_settings() {
|
||||||
echo -e "${DGN}Using Gateway IP Address: ${BGN}Default${CL}"
|
echo -e "${DGN}Using Gateway IP Address: ${BGN}Default${CL}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if APT_CACHER_IP=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set APT-Cacher IP (leave blank for default)" 8 58 --title "APT-Cacher IP" 3>&1 1>&2 2>&3); then
|
|
||||||
if [ -z "$APT_CACHER_IP" ]; then
|
|
||||||
APT_CACHER="no"
|
|
||||||
APT_CACHER_IP="None"
|
|
||||||
else
|
|
||||||
APT_CACHER="yes"
|
|
||||||
fi
|
|
||||||
echo -e "${DGN}Using APT-Cacher IP: ${BGN}$APT_CACHER_IP${CL}"
|
|
||||||
else
|
|
||||||
exit-script
|
|
||||||
fi
|
|
||||||
|
|
||||||
if (whiptail --backtitle "Proxmox VE Helper Scripts" --defaultno --title "IPv6" --yesno "Disable IPv6?" 10 58); then
|
if (whiptail --backtitle "Proxmox VE Helper Scripts" --defaultno --title "IPv6" --yesno "Disable IPv6?" 10 58); then
|
||||||
DISABLEIP6="yes"
|
DISABLEIP6="yes"
|
||||||
else
|
else
|
||||||
|
@ -510,9 +497,7 @@ build_container() {
|
||||||
export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/alpine-install.func)"
|
export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/alpine-install.func)"
|
||||||
else
|
else
|
||||||
export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/install.func)"
|
export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/install.func)"
|
||||||
|
fi
|
||||||
export CACHER="$APT_CACHER"
|
|
||||||
export CACHER_IP="$APT_CACHER_IP"
|
|
||||||
export tz="$timezone"
|
export tz="$timezone"
|
||||||
export DISABLEIPV6="$DISABLEIP6"
|
export DISABLEIPV6="$DISABLEIP6"
|
||||||
export APPLICATION="$APP"
|
export APPLICATION="$APP"
|
||||||
|
|
Loading…
Reference in New Issue