Revert "enabling offline use"

This reverts commit e9f30734a3.
This commit is contained in:
Sam Heinz
2025-01-08 00:13:11 +10:00
parent 3bbbffb688
commit 9263adb8cf
206 changed files with 215 additions and 211 deletions
+10 -6
View File
@@ -530,8 +530,12 @@ advanced_settings() {
APT_CACHER=""
APT_CACHER_IP=""
else
APT_CACHER_IP="192.168.1.230" # Hard-coded IP for APT-Cacher
echo -e "${NETWORK}${BOLD}${DGN}APT-Cacher IP Address: ${BGN}${APT_CACHER_IP}${CL}"
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
APT_CACHER="${APT_CACHER_IP:+yes}"
echo -e "${NETWORK}${BOLD}${DGN}APT-Cacher IP Address: ${BGN}${APT_CACHER_IP:-Default}${CL}"
else
exit_script
fi
fi
if (whiptail --backtitle "Proxmox VE Helper Scripts" --defaultno --title "IPv6" --yesno "Disable IPv6?" 10 58); then
@@ -763,9 +767,9 @@ build_container() {
TEMP_DIR=$(mktemp -d)
pushd $TEMP_DIR >/dev/null
if [ "$var_os" == "alpine" ]; then
export FUNCTIONS_FILE_PATH="/root/proxmox-work/Proxmox/misc/alpine-install.func"
export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/alpine-install.func)"
else
export FUNCTIONS_FILE_PATH="/root/proxmox-work/Proxmox/misc/install.func"
export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/install.func)"
fi
export CACHER="$APT_CACHER"
export CACHER_IP="$APT_CACHER_IP"
@@ -795,7 +799,7 @@ build_container() {
$PW
"
# This executes create_lxc.sh and creates the container and .conf file
bash /root/proxmox-work/Proxmox/ct/create_lxc.sh || exit
bash -c "$(wget -qLO - https://raw.githubusercontent.com/asylumexp/Proxmox/main/ct/create_lxc.sh)" || exit
LXC_CONFIG=/etc/pve/lxc/${CTID}.conf
if [ "$CT_TYPE" == "0" ]; then
@@ -857,7 +861,7 @@ http://dl-cdn.alpinelinux.org/alpine/latest-stable/community
EOF'
pct exec "$CTID" -- ash -c "apk add bash >/dev/null"
fi
lxc-attach -n "$CTID" -- bash /root/proxmox-work/Proxmox/install/$var_install.sh || exit
lxc-attach -n "$CTID" -- bash -c "$(wget -qLO - https://raw.githubusercontent.com/asylumexp/Proxmox/main/install/$var_install.sh)" || exit
}