diff --git a/ct/create_lxc.sh b/ct/create_lxc.sh index 321f378..4aa055b 100644 --- a/ct/create_lxc.sh +++ b/ct/create_lxc.sh @@ -12,9 +12,11 @@ if command -v curl >/dev/null 2>&1; then source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/core.func) load_functions + echo "(create-lxc.sh) Loaded core.func via curl" elif command -v wget >/dev/null 2>&1; then source <(wget -qO- https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/core.func) load_functions + echo "(create-lxc.sh) Loaded core.func via wget" fi # This function sets color variables for formatting output in the terminal diff --git a/misc/alpine-install.func b/misc/alpine-install.func index 2dbbfc6..98046ca 100644 --- a/misc/alpine-install.func +++ b/misc/alpine-install.func @@ -7,9 +7,11 @@ if command -v curl >/dev/null 2>&1; then source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/core.func) load_functions + echo "(alpine-install.func) Loaded core.func via curl" elif command -v wget >/dev/null 2>&1; then source <(wget -qO- https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/core.func) load_functions + echo "(alpine-install.func) Loaded core.func via wget" fi # This function sets color variables for formatting output in the terminal diff --git a/misc/build.func b/misc/build.func index 5659a71..f92f9d9 100644 --- a/misc/build.func +++ b/misc/build.func @@ -19,9 +19,11 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV if command -v curl >/dev/null 2>&1; then source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/core.func) load_functions + echo "(build.func) Loaded core.func via curl" elif command -v wget >/dev/null 2>&1; then source <(wget -qO- https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/core.func) load_functions + echo "(build.func) Loaded core.func via wget" fi # # This function sets various color variables using ANSI escape codes for formatting text in the terminal. diff --git a/misc/install.func b/misc/install.func index 8c873eb..05f9a2f 100644 --- a/misc/install.func +++ b/misc/install.func @@ -8,9 +8,11 @@ if command -v curl >/dev/null 2>&1; then source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/core.func) load_functions + echo "(install.func) Loaded core.func via curl" elif command -v wget >/dev/null 2>&1; then source <(wget -qO- https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/core.func) load_functions + echo "(install.func) Loaded core.func via wget" fi # color() {