From 371cde2d8a76163283302cb8adef86e5fd08f212 Mon Sep 17 00:00:00 2001 From: tteckster Date: Fri, 12 Jan 2024 12:09:32 -0500 Subject: [PATCH] Update build.func revert --- misc/build.func | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/misc/build.func b/misc/build.func index 46a7a94b..56599ad4 100644 --- a/misc/build.func +++ b/misc/build.func @@ -135,7 +135,6 @@ echo_default() { echo -e "${DGN}Using Bridge: ${BGN}vmbr0${CL}" echo -e "${DGN}Using Static IP Address: ${BGN}dhcp${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}Using Interface MTU Size: ${BGN}Default${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}" 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 DISABLEIP6="yes" else @@ -510,9 +497,7 @@ build_container() { export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/alpine-install.func)" else export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/install.func)" - - export CACHER="$APT_CACHER" - export CACHER_IP="$APT_CACHER_IP" + fi export tz="$timezone" export DISABLEIPV6="$DISABLEIP6" export APPLICATION="$APP"