setup fork

This commit is contained in:
montagneid
2026-05-08 13:38:08 +02:00
parent a6c664bea0
commit 97125647d9
225 changed files with 1634 additions and 366 deletions

View File

@@ -9,8 +9,8 @@
# ADDON TEMPLATE - Use this as starting point for new addon scripts
# ==============================================================================
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/core.func)
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/tools.func)
source <(curl -fsSL https://raw.githubusercontent.com/montagneid/ProxmoxVED/main/misc/core.func)
source <(curl -fsSL https://raw.githubusercontent.com/montagneid/ProxmoxVED/main/misc/tools.func)
# ==============================================================================
# CONFIGURATION
@@ -291,7 +291,7 @@ echo -e "\${BL}━━━━━━━━━━━━━━━━━━━━━
echo ""
# Source tools.func for update functions
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/tools.func) 2>/dev/null || {
source <(curl -fsSL https://raw.githubusercontent.com/montagneid/ProxmoxVED/main/misc/tools.func) 2>/dev/null || {
echo -e "\${RD}Failed to load tools.func\${CL}"
exit 1
}

View File

@@ -3,7 +3,7 @@
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT
# https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# https://github.com/montagneid/ProxmoxVED/raw/main/LICENSE
function header_info {
cat <<"EOF"

View File

@@ -92,7 +92,7 @@ function update() {
cat <<'UPDATEEOF' >/usr/local/bin/update_cronmaster
#!/usr/bin/env bash
# CronMaster Update Script
CRONMASTER_ACTION=update bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/tools/addon/cronmaster.sh)"
CRONMASTER_ACTION=update bash -c "$(curl -fsSL https://raw.githubusercontent.com/montagneid/ProxmoxVED/main/tools/addon/cronmaster.sh)"
UPDATEEOF
chmod +x /usr/local/bin/update_cronmaster
msg_ok "Updated update script"
@@ -158,7 +158,7 @@ EOF
cat <<'UPDATEEOF' >/usr/local/bin/update_cronmaster
#!/usr/bin/env bash
# CronMaster Update Script
CRONMASTER_ACTION=update bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/tools/addon/cronmaster.sh)"
CRONMASTER_ACTION=update bash -c "$(curl -fsSL https://raw.githubusercontent.com/montagneid/ProxmoxVED/main/tools/addon/cronmaster.sh)"
UPDATEEOF
chmod +x /usr/local/bin/update_cronmaster
msg_ok "Created update script (/usr/local/bin/update_cronmaster)"

View File

@@ -48,7 +48,7 @@ install_glances_debian() {
msg_ok "Installed dependencies"
msg_info "Setting up Python + uv"
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/tools.func)
source <(curl -fsSL https://raw.githubusercontent.com/montagneid/ProxmoxVED/main/misc/tools.func)
setup_uv PYTHON_VERSION="3.12"
msg_ok "Setup Python + uv"
@@ -118,7 +118,7 @@ install_glances_alpine() {
msg_ok "Installed dependencies"
msg_info "Setting up Python + uv"
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/tools.func)
source <(curl -fsSL https://raw.githubusercontent.com/montagneid/ProxmoxVED/main/misc/tools.func)
setup_uv PYTHON_VERSION="3.12"
msg_ok "Setup Python + uv"

View File

@@ -3,7 +3,7 @@
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT
# https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# https://github.com/montagneid/ProxmoxVED/raw/main/LICENSE
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color

View File

@@ -252,7 +252,7 @@ echo -e "\${BL}━━━━━━━━━━━━━━━━━━━━━
echo ""
# Source tools.func for update functions
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/tools.func) 2>/dev/null || {
source <(curl -fsSL https://raw.githubusercontent.com/montagneid/ProxmoxVED/main/misc/tools.func) 2>/dev/null || {
echo -e "\${RD}Failed to load tools.func\${CL}"
exit 1
}