diff --git a/misc/core.func b/misc/core.func index e4ac1a9..258ccf1 100644 --- a/misc/core.func +++ b/misc/core.func @@ -1,13 +1,13 @@ # Copyright (c) 2021-2025 community-scripts ORG # License: MIT | https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/LICENSE -if ! declare -f wait_for >/dev/null; then - echo "[DEBUG] Undefined function 'wait_for' used from: ${BASH_SOURCE[*]}" >&2 - wait_for() { - echo "[DEBUG] Fallback: wait_for called with: $*" >&2 - true - } -fi +# if ! declare -f wait_for >/dev/null; then +# echo "[DEBUG] Undefined function 'wait_for' used from: ${BASH_SOURCE[*]}" >&2 +# wait_for() { +# echo "[DEBUG] Fallback: wait_for called with: $*" >&2 +# true +# } +# fi declare -A MSG_INFO_SHOWN=() SPINNER_PID="" diff --git a/misc/install.func b/misc/install.func index 8b4b479..c7bb8ee 100644 --- a/misc/install.func +++ b/misc/install.func @@ -86,7 +86,7 @@ setting_up_container() { rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED systemctl disable -q --now systemd-networkd-wait-online.service msg_ok "Set up Container OS" - #msg_custom "${CM}" "${GN}" "Network Connected: ${BL}$(hostname -I)" + msg_custom "${CM}" "${GN}" "Network Connected: ${BL}$(hostname -I)" } # This function checks the network connection by pinging a known IP address and prompts the user to continue if the internet is not connected @@ -149,7 +149,9 @@ EOF rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED msg_ok "Updated Container OS" + msg_info "DEBUG: about to source tools.func" source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/tools.func) + msg_ok "DEBUG: sourced tools.func" }