diff --git a/.git-setup-info b/.git-setup-info
new file mode 100644
index 00000000..26573ebc
--- /dev/null
+++ b/.git-setup-info
@@ -0,0 +1,59 @@
+# Git Configuration for ProxmoxVED Development
+
+## Recommended Git Configuration
+
+### Set up remotes for easy syncing with upstream:
+
+```bash
+# View your current remotes
+git remote -v
+
+# If you don't have 'upstream' configured, add it:
+git remote add upstream https://github.com/community-scripts/ProxmoxVED.git
+
+# Verify both remotes exist:
+git remote -v
+# Should show:
+# origin https://github.com/YOUR_USERNAME/ProxmoxVED.git (fetch)
+# origin https://github.com/YOUR_USERNAME/ProxmoxVED.git (push)
+# upstream https://github.com/community-scripts/ProxmoxVED.git (fetch)
+# upstream https://github.com/community-scripts/ProxmoxVED.git (push)
+```
+
+### Configure Git User (if not done globally)
+
+```bash
+git config user.name "Your Name"
+git config user.email "your.email@example.com"
+
+# Or configure globally:
+git config --global user.name "Your Name"
+git config --global user.email "your.email@example.com"
+```
+
+### Useful Git Workflows
+
+**Keep your fork up-to-date:**
+```bash
+git fetch upstream
+git rebase upstream/main
+git push origin main
+```
+
+**Create feature branch:**
+```bash
+git checkout -b feature/my-awesome-app
+# Make changes...
+git commit -m "feat: add my awesome app"
+git push origin feature/my-awesome-app
+```
+
+**Pull latest from upstream:**
+```bash
+git fetch upstream
+git merge upstream/main
+```
+
+---
+
+For more help, see: docs/CONTRIBUTION_GUIDE.md
diff --git a/.github/workflows/scripts/app-test/pr-alpine-install.func b/.github/workflows/scripts/app-test/pr-alpine-install.func
index 95d85cb7..03c949a6 100644
--- a/.github/workflows/scripts/app-test/pr-alpine-install.func
+++ b/.github/workflows/scripts/app-test/pr-alpine-install.func
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Michel Roegl-Brunner (michelroegl-brunner)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
color() {
return
diff --git a/.github/workflows/scripts/app-test/pr-build.func b/.github/workflows/scripts/app-test/pr-build.func
index 2f143d3d..3b262842 100644
--- a/.github/workflows/scripts/app-test/pr-build.func
+++ b/.github/workflows/scripts/app-test/pr-build.func
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Michel Roegl-Brunner (michelroegl-brunner)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
variables() {
NSAPP=$(echo ${APP,,} | tr -d ' ') # This function sets the NSAPP variable by converting the value of the APP variable to lowercase and removing any spaces.
diff --git a/.github/workflows/scripts/app-test/pr-create-lxc.sh b/.github/workflows/scripts/app-test/pr-create-lxc.sh
index 99d6b774..7659ceb6 100644
--- a/.github/workflows/scripts/app-test/pr-create-lxc.sh
+++ b/.github/workflows/scripts/app-test/pr-create-lxc.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Michel Roegl-Brunner (michelroegl-brunner)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
color() {
return
diff --git a/.github/workflows/scripts/app-test/pr-install.func b/.github/workflows/scripts/app-test/pr-install.func
index 8b45f154..ac887c28 100644
--- a/.github/workflows/scripts/app-test/pr-install.func
+++ b/.github/workflows/scripts/app-test/pr-install.func
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Michel Roegl-Brunner (michelroegl-brunner)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
color() {
return
diff --git a/ct/affine.sh b/ct/affine.sh
index edc90691..11c3358a 100644
--- a/ct/affine.sh
+++ b/ct/affine.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/toeverything/AFFiNE
APP="AFFiNE"
diff --git a/ct/akaunting.sh b/ct/akaunting.sh
index bb6df16e..9fea8c6b 100644
--- a/ct/akaunting.sh
+++ b/ct/akaunting.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://akaunting.com/
APP="Akaunting"
diff --git a/ct/almalinux.sh b/ct/almalinux.sh
index e1ca7597..b833f538 100644
--- a/ct/almalinux.sh
+++ b/ct/almalinux.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://almalinux.org/
APP="AlmaLinux"
diff --git a/ct/alpine-cinny.sh b/ct/alpine-cinny.sh
index bba4869c..4a5d1d51 100644
--- a/ct/alpine-cinny.sh
+++ b/ct/alpine-cinny.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Tobias Salzmann (Eun)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
diff --git a/ct/alpine-coredns.sh b/ct/alpine-coredns.sh
index 10a04a36..7c7e42ad 100644
--- a/ct/alpine-coredns.sh
+++ b/ct/alpine-coredns.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: CopilotAssistant (community-scripts)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/coredns/coredns
APP="Alpine-CoreDNS"
diff --git a/ct/alpine.sh b/ct/alpine.sh
index f9a814db..24d99bea 100644
--- a/ct/alpine.sh
+++ b/ct/alpine.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://alpinelinux.org/
APP="Alpine"
diff --git a/ct/archlinux.sh b/ct/archlinux.sh
index 64ff64a9..769dd8e7 100644
--- a/ct/archlinux.sh
+++ b/ct/archlinux.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://archlinux.org/
APP="Arch Linux"
diff --git a/ct/arm.sh b/ct/arm.sh
index 0270a829..7ce7eee7 100644
--- a/ct/arm.sh
+++ b/ct/arm.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/automatic-ripping-machine/automatic-ripping-machine
APP="ARM"
diff --git a/ct/authentik.sh b/ct/authentik.sh
index 2879eed6..48ce7216 100644
--- a/ct/authentik.sh
+++ b/ct/authentik.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Thieneret
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/goauthentik/authentik
APP="authentik"
diff --git a/ct/baserow.sh b/ct/baserow.sh
index 78ec15bb..4e28f41d 100644
--- a/ct/baserow.sh
+++ b/ct/baserow.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/baserow/baserow
APP="Baserow"
diff --git a/ct/bitfocus-companion.sh b/ct/bitfocus-companion.sh
index 2a951cd5..969915bd 100644
--- a/ct/bitfocus-companion.sh
+++ b/ct/bitfocus-companion.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: glabutis
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/bitfocus/companion
APP="Bitfocus-Companion"
diff --git a/ct/blinko.sh b/ct/blinko.sh
index 9e00b180..e73f3d4c 100644
--- a/ct/blinko.sh
+++ b/ct/blinko.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://blinko.space/
APP="Blinko"
diff --git a/ct/caddymanager.sh b/ct/caddymanager.sh
index db1a225d..5c1ef697 100644
--- a/ct/caddymanager.sh
+++ b/ct/caddymanager.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Slaviša Arežina (tremor021)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/caddymanager/caddymanager
APP="CaddyManager"
diff --git a/ct/centos.sh b/ct/centos.sh
index 6ce04dbf..6405aee1 100644
--- a/ct/centos.sh
+++ b/ct/centos.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.centos.org/centos-stream/
APP="CentOS Stream"
diff --git a/ct/certimate.sh b/ct/certimate.sh
index cd430ca9..1ea421ca 100644
--- a/ct/certimate.sh
+++ b/ct/certimate.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://certimate.me/
APP="Certimate"
diff --git a/ct/clickhouse.sh b/ct/clickhouse.sh
index 4c6ede16..306ee02c 100644
--- a/ct/clickhouse.sh
+++ b/ct/clickhouse.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://clickhouse.com
APP="ClickHouse"
diff --git a/ct/cliproxyapi.sh b/ct/cliproxyapi.sh
index b23bd31e..7a94892a 100644
--- a/ct/cliproxyapi.sh
+++ b/ct/cliproxyapi.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: mathiasnagler
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/router-for-me/CLIProxyAPI
APP="CLIProxyAPI"
diff --git a/ct/ddns-updater.sh b/ct/ddns-updater.sh
index 506d3cf9..88174f41 100644
--- a/ct/ddns-updater.sh
+++ b/ct/ddns-updater.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: reptil1990
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/qdm12/ddns-updater
APP="DDNS-Updater"
diff --git a/ct/debian.sh b/ct/debian.sh
index fb7b4785..c48d373b 100644
--- a/ct/debian.sh
+++ b/ct/debian.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source:
APP="Debian"
diff --git a/ct/deferred/docspell.sh b/ct/deferred/docspell.sh
index b78d5373..1f5375a1 100644
--- a/ct/deferred/docspell.sh
+++ b/ct/deferred/docspell.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (Canbiz)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/community-scripts/ProxmoxVE
APP="Docspell"
diff --git a/ct/deferred/jumpserver.sh b/ct/deferred/jumpserver.sh
index dcc3e208..320cfdee 100644
--- a/ct/deferred/jumpserver.sh
+++ b/ct/deferred/jumpserver.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Nícolas Pastorello (opastorello)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/jumpserver/jumpserver
APP="JumpServer"
diff --git a/ct/deferred/maxun.sh b/ct/deferred/maxun.sh
index 226c8dec..e41811f7 100644
--- a/ct/deferred/maxun.sh
+++ b/ct/deferred/maxun.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/getmaxun/maxun
APP="Maxun"
diff --git a/ct/deferred/ocis.sh b/ct/deferred/ocis.sh
index ed67ef4a..ee11ba8c 100644
--- a/ct/deferred/ocis.sh
+++ b/ct/deferred/ocis.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.debian.org/
APP="ocis"
diff --git a/ct/deferred/piler.sh b/ct/deferred/piler.sh
index a6dfcf65..8c937ddb 100644
--- a/ct/deferred/piler.sh
+++ b/ct/deferred/piler.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.mailpiler.org/
APP="Piler"
diff --git a/ct/deferred/polaris.sh b/ct/deferred/polaris.sh
index e0394e05..bfc356c8 100644
--- a/ct/deferred/polaris.sh
+++ b/ct/deferred/polaris.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/agersant/polaris
APP="Polaris"
diff --git a/ct/deferred/roundcubemail.sh b/ct/deferred/roundcubemail.sh
index 0c74f702..fe1413d6 100644
--- a/ct/deferred/roundcubemail.sh
+++ b/ct/deferred/roundcubemail.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source:
APP="Roundcubemail"
diff --git a/ct/deferred/rybbit.sh b/ct/deferred/rybbit.sh
index aceaf970..b884a68b 100644
--- a/ct/deferred/rybbit.sh
+++ b/ct/deferred/rybbit.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/rybbit-io/rybbit
APP="Rybbit"
diff --git a/ct/deferred/transmission-openvpn.sh b/ct/deferred/transmission-openvpn.sh
index 763c7836..fccf2a88 100644
--- a/ct/deferred/transmission-openvpn.sh
+++ b/ct/deferred/transmission-openvpn.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: SunFlowerOwl
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/haugene/docker-transmission-openvpn
APP="transmission-openvpn"
diff --git a/ct/degoog.sh b/ct/degoog.sh
index 55e624f9..cdabaf0d 100644
--- a/ct/degoog.sh
+++ b/ct/degoog.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: vhsdream
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/fccview/degoog
APP="degoog"
diff --git a/ct/devuan.sh b/ct/devuan.sh
index 5d88e41d..dd86b4c2 100644
--- a/ct/devuan.sh
+++ b/ct/devuan.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.devuan.org/
APP="Devuan"
diff --git a/ct/discourse.sh b/ct/discourse.sh
index 2ddb8c10..0016d97c 100644
--- a/ct/discourse.sh
+++ b/ct/discourse.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.discourse.org/
APP="Discourse"
diff --git a/ct/docuseal.sh b/ct/docuseal.sh
index c12c2ab1..061d0b70 100644
--- a/ct/docuseal.sh
+++ b/ct/docuseal.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.docuseal.com/
APP="DocuSeal"
diff --git a/ct/dynacat.sh b/ct/dynacat.sh
index ea3b65ac..a78b2998 100644
--- a/ct/dynacat.sh
+++ b/ct/dynacat.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/Panonim/dynacat
APP="Dynacat"
diff --git a/ct/ente.sh b/ct/ente.sh
index 97a46f4a..721ec290 100644
--- a/ct/ente.sh
+++ b/ct/ente.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/ente-io/ente
APP="Ente"
diff --git a/ct/erpnext.sh b/ct/erpnext.sh
index d4647a28..c64614d5 100644
--- a/ct/erpnext.sh
+++ b/ct/erpnext.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: community-scripts
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/frappe/erpnext
APP="ERPNext"
diff --git a/ct/espconnect.sh b/ct/espconnect.sh
index 32ef1f7c..d86d5a33 100644
--- a/ct/espconnect.sh
+++ b/ct/espconnect.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main}"
+COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://raw.githubusercontent.com/--full/ProxmoxVED/main}"
source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/build.func")
# Copyright (c) 2021-2026 community-scripts ORG
# Author: John Lombardo
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/thelastoutpostworkshop/ESPConnect
APP="ESPConnect"
diff --git a/ct/fedora.sh b/ct/fedora.sh
index e011ec38..528851ce 100644
--- a/ct/fedora.sh
+++ b/ct/fedora.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://fedoraproject.org/
APP="Fedora"
diff --git a/ct/fileflows.sh b/ct/fileflows.sh
index 2459ce79..77ad47ec 100644
--- a/ct/fileflows.sh
+++ b/ct/fileflows.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: kkroboth
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
diff --git a/ct/fleet.sh b/ct/fleet.sh
index 665b3398..082f52ac 100644
--- a/ct/fleet.sh
+++ b/ct/fleet.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/fleetdm/fleet
APP="Fleet"
diff --git a/ct/forgejo-runner.sh b/ct/forgejo-runner.sh
index f50c169a..d03840de 100644
--- a/ct/forgejo-runner.sh
+++ b/ct/forgejo-runner.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Simon Friedrich (lengschder97)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://forgejo.org/
APP="Forgejo-Runner"
diff --git a/ct/garmin-grafana.sh b/ct/garmin-grafana.sh
index e02047d8..7cc6a1c3 100644
--- a/ct/garmin-grafana.sh
+++ b/ct/garmin-grafana.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: aliaksei135
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/arpanghosh8453/garmin-grafana
APP="garmin-grafana"
diff --git a/ct/gentoo.sh b/ct/gentoo.sh
index cf6e88e9..f44cf99c 100644
--- a/ct/gentoo.sh
+++ b/ct/gentoo.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.gentoo.org/
APP="Gentoo"
diff --git a/ct/godoxy.sh b/ct/godoxy.sh
index e4fa530a..a57fbe1e 100644
--- a/ct/godoxy.sh
+++ b/ct/godoxy.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/yusing/godoxy
APP="GoDoxy"
diff --git a/ct/hoodik.sh b/ct/hoodik.sh
index c63a175e..d9537c49 100644
--- a/ct/hoodik.sh
+++ b/ct/hoodik.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/hudikhq/hoodik
APP="Hoodik"
diff --git a/ct/invidious.sh b/ct/invidious.sh
index b856e504..7295f20e 100644
--- a/ct/invidious.sh
+++ b/ct/invidious.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: vhsdream
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/iv-org/invidious
APP="Invidious"
diff --git a/ct/invoiceshelf.sh b/ct/invoiceshelf.sh
index ad6338db..7dbc8b64 100644
--- a/ct/invoiceshelf.sh
+++ b/ct/invoiceshelf.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://invoiceshelf.com/
APP="InvoiceShelf"
diff --git a/ct/kan.sh b/ct/kan.sh
index 84015769..f505eed5 100644
--- a/ct/kan.sh
+++ b/ct/kan.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/kanbn/kan
APP="Kan"
diff --git a/ct/labca.sh b/ct/labca.sh
index b14819de..dc14e9ea 100644
--- a/ct/labca.sh
+++ b/ct/labca.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/hakwerk/labca
APP="LabCA"
diff --git a/ct/librechat.sh b/ct/librechat.sh
index e428f953..3f1290d5 100644
--- a/ct/librechat.sh
+++ b/ct/librechat.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/danny-avila/LibreChat
APP="LibreChat"
diff --git a/ct/lobehub.sh b/ct/lobehub.sh
index 16921a14..085c5abb 100644
--- a/ct/lobehub.sh
+++ b/ct/lobehub.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/lobehub/lobehub
APP="LobeHub"
diff --git a/ct/localagi.sh b/ct/localagi.sh
index d6bd7a54..a61b64b4 100644
--- a/ct/localagi.sh
+++ b/ct/localagi.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: BillyOutlast
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/mudler/LocalAGI
APP="LocalAGI"
diff --git a/ct/lychee.sh b/ct/lychee.sh
index e6df1a22..9031d832 100644
--- a/ct/lychee.sh
+++ b/ct/lychee.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/LycheeOrg/Lychee
APP="Lychee"
diff --git a/ct/matomo.sh b/ct/matomo.sh
index 935fef71..ebd9b5a5 100644
--- a/ct/matomo.sh
+++ b/ct/matomo.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://matomo.org/
APP="Matomo"
diff --git a/ct/nagios.sh b/ct/nagios.sh
index 24594094..4eb5d268 100644
--- a/ct/nagios.sh
+++ b/ct/nagios.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/NagiosEnterprises/nagioscore
APP="Nagios"
diff --git a/ct/neko.sh b/ct/neko.sh
index aa69a267..d325ea72 100644
--- a/ct/neko.sh
+++ b/ct/neko.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: CanbiZ (MickLesk)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://neko.m1k1o.net/
APP="Neko"
diff --git a/ct/nezha.sh b/ct/nezha.sh
index 6acdf924..56b4f7b4 100644
--- a/ct/nezha.sh
+++ b/ct/nezha.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: GitHub Copilot (GPT-5.3-Codex)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/nezhahq/nezha
APP="Nezha"
diff --git a/ct/openeuler.sh b/ct/openeuler.sh
index eabe482e..8dcac7c9 100644
--- a/ct/openeuler.sh
+++ b/ct/openeuler.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.openeuler.org/
# NOTE: openEuler has a PVE compatibility issue
diff --git a/ct/opensuse.sh b/ct/opensuse.sh
index 3d282472..147c0147 100644
--- a/ct/opensuse.sh
+++ b/ct/opensuse.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.opensuse.org/
APP="openSUSE"
diff --git a/ct/openwebui.sh b/ct/openwebui.sh
index 9a5115b5..650e1a20 100644
--- a/ct/openwebui.sh
+++ b/ct/openwebui.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 tteck
# Author: tteck | Co-Author: havardthom | Co-Author: Slaviša Arežina (tremor021)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
diff --git a/ct/oxicloud.sh b/ct/oxicloud.sh
index 62f5f196..cb8241dd 100644
--- a/ct/oxicloud.sh
+++ b/ct/oxicloud.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: vhsdream
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/DioCrafts/OxiCloud
APP="OxiCloud"
diff --git a/ct/paperclip.sh b/ct/paperclip.sh
index 4bae19d8..e21517b1 100644
--- a/ct/paperclip.sh
+++ b/ct/paperclip.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Fabian Pulch (fpulch)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/paperclipai/paperclip
APP="Paperclip"
diff --git a/ct/papermark.sh b/ct/papermark.sh
index 89014718..689758bb 100644
--- a/ct/papermark.sh
+++ b/ct/papermark.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.papermark.com/
APP="Papermark"
diff --git a/ct/pixelfed.sh b/ct/pixelfed.sh
index 9f14ab21..9f312113 100644
--- a/ct/pixelfed.sh
+++ b/ct/pixelfed.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://pixelfed.org/
APP="Pixelfed"
diff --git a/ct/plane.sh b/ct/plane.sh
index 556805e5..d9fdeb7b 100644
--- a/ct/plane.sh
+++ b/ct/plane.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: onionrings29
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://plane.so | GitHub: https://github.com/makeplane/plane
APP="Plane"
diff --git a/ct/postiz.sh b/ct/postiz.sh
index bddd6c6a..6045d94c 100644
--- a/ct/postiz.sh
+++ b/ct/postiz.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/gitroomhq/postiz-app
APP="Postiz"
diff --git a/ct/puter.sh b/ct/puter.sh
index 491d6aae..a762723b 100644
--- a/ct/puter.sh
+++ b/ct/puter.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/HeyPuter/puter
APP="Puter"
diff --git a/ct/rockylinux.sh b/ct/rockylinux.sh
index 4dc9024d..2f71ca11 100644
--- a/ct/rockylinux.sh
+++ b/ct/rockylinux.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://rockylinux.org/
APP="Rocky Linux"
diff --git a/ct/rss-bridge.sh b/ct/rss-bridge.sh
index 8f4aa1f5..b5c7976e 100644
--- a/ct/rss-bridge.sh
+++ b/ct/rss-bridge.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://rss-bridge.org/
APP="RSS-Bridge"
diff --git a/ct/shiori.sh b/ct/shiori.sh
index 6e8e526b..904eae5b 100644
--- a/ct/shiori.sh
+++ b/ct/shiori.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: GitHub Copilot (GPT-5.3-Codex)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/go-shiori/shiori
APP="Shiori"
diff --git a/ct/shlink.sh b/ct/shlink.sh
index f55ac724..bb82d2d7 100644
--- a/ct/shlink.sh
+++ b/ct/shlink.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://shlink.io/
APP="Shlink"
diff --git a/ct/simplelogin.sh b/ct/simplelogin.sh
index bfbf148a..57842c58 100644
--- a/ct/simplelogin.sh
+++ b/ct/simplelogin.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/simple-login/app
APP="SimpleLogin"
diff --git a/ct/skylite-ux.sh b/ct/skylite-ux.sh
index e84df958..1116bda3 100644
--- a/ct/skylite-ux.sh
+++ b/ct/skylite-ux.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: bzumhagen
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/Wetzel402/Skylite-UX
APP="Skylite-UX"
diff --git a/ct/slink.sh b/ct/slink.sh
index dc57d972..18151f0e 100644
--- a/ct/slink.sh
+++ b/ct/slink.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/andrii-kryvoviaz/slink
APP="Slink"
diff --git a/ct/solidtime.sh b/ct/solidtime.sh
index 59f40712..fd31227c 100644
--- a/ct/solidtime.sh
+++ b/ct/solidtime.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.solidtime.io/
APP="SolidTime"
diff --git a/ct/soulsync.sh b/ct/soulsync.sh
index ae51f58c..7e0c11e1 100644
--- a/ct/soulsync.sh
+++ b/ct/soulsync.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/Nezreka/SoulSync
APP="SoulSync"
diff --git a/ct/storyteller.sh b/ct/storyteller.sh
index daafd6b5..36dde2ad 100644
--- a/ct/storyteller.sh
+++ b/ct/storyteller.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://gitlab.com/storyteller-platform/storyteller
APP="Storyteller"
diff --git a/ct/surrealdb.sh b/ct/surrealdb.sh
index 70a35d31..26257cc1 100644
--- a/ct/surrealdb.sh
+++ b/ct/surrealdb.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: PouletteMC
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://surrealdb.com
APP="SurrealDB"
diff --git a/ct/teable.sh b/ct/teable.sh
index 1c15bce8..3cf74509 100644
--- a/ct/teable.sh
+++ b/ct/teable.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: community-scripts
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/teableio/teable
APP="Teable"
diff --git a/ct/tolgee.sh b/ct/tolgee.sh
index e314086d..b883b88c 100644
--- a/ct/tolgee.sh
+++ b/ct/tolgee.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/tolgee/tolgee-platform
APP="Tolgee"
diff --git a/ct/tor-snowflake.sh b/ct/tor-snowflake.sh
index 20397e45..dea65321 100644
--- a/ct/tor-snowflake.sh
+++ b/ct/tor-snowflake.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2025 community-scripts ORG
# Author: KernelSailor
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://snowflake.torproject.org/
APP="tor-snowflake"
diff --git a/ct/tubearchivist.sh b/ct/tubearchivist.sh
index afa2a295..68afe7f6 100644
--- a/ct/tubearchivist.sh
+++ b/ct/tubearchivist.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: community-scripts
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/tubearchivist/tubearchivist
APP="Tube Archivist"
diff --git a/ct/twenty.sh b/ct/twenty.sh
index e75af120..471833f0 100644
--- a/ct/twenty.sh
+++ b/ct/twenty.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/twentyhq/twenty
APP="Twenty"
diff --git a/ct/ubuntu.sh b/ct/ubuntu.sh
index bd0e8dd0..95a9e440 100644
--- a/ct/ubuntu.sh
+++ b/ct/ubuntu.sh
@@ -1,10 +1,10 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/github.func)
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://ubuntu.com/
APP="Ubuntu"
diff --git a/ct/zitadel.sh b/ct/zitadel.sh
index 881e683b..cf5c3994 100644
--- a/ct/zitadel.sh
+++ b/ct/zitadel.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: dave-yap (dave-yap) | Co-author: remz1337
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://zitadel.com/
APP="Zitadel"
diff --git a/docs/DEFAULTS_SYSTEM_GUIDE.md b/docs/DEFAULTS_SYSTEM_GUIDE.md
index ce5a424d..b41ce632 100644
--- a/docs/DEFAULTS_SYSTEM_GUIDE.md
+++ b/docs/DEFAULTS_SYSTEM_GUIDE.md
@@ -716,8 +716,8 @@ EOF
### Need More Information?
- 📖 [Main Documentation](../../docs/)
-- 🐛 [Report Issues](https://github.com/community-scripts/ProxmoxVED/issues)
-- 💬 [Discussions](https://github.com/community-scripts/ProxmoxVED/discussions)
+- 🐛 [Report Issues](https://github.com/--full/ProxmoxVED/issues)
+- 💬 [Discussions](https://github.com/--full/ProxmoxVED/discussions)
### Useful Commands
diff --git a/docs/DEV_MODE.md b/docs/DEV_MODE.md
index 81f52709..bdd6e59f 100644
--- a/docs/DEV_MODE.md
+++ b/docs/DEV_MODE.md
@@ -7,16 +7,16 @@ Development modes provide powerful debugging and testing capabilities for contai
```bash
# Single mode
export dev_mode="motd"
-bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/wallabag.sh)"
+bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/ct/wallabag.sh)"
# Multiple modes (comma-separated)
export dev_mode="motd,keep,trace"
-bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/wallabag.sh)"
+bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/ct/wallabag.sh)"
# Combine with verbose output
export var_verbose="yes"
export dev_mode="pause,logs"
-bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/wallabag.sh)"
+bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/ct/wallabag.sh)"
```
## Available Modes
@@ -457,7 +457,7 @@ grep "ed563b19" /var/log/community-scripts/*.log
```bash
# Initial test to see the failure
export dev_mode="keep,logs"
-bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/wallabag.sh)"
+bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/ct/wallabag.sh)"
# Container 107 kept, check logs
tail /var/log/community-scripts/install-*.log
diff --git a/docs/EXIT_CODES.md b/docs/EXIT_CODES.md
index 7916c4a1..aeb79845 100644
--- a/docs/EXIT_CODES.md
+++ b/docs/EXIT_CODES.md
@@ -285,7 +285,7 @@ Official discussion: [GitHub #8126](https://github.com/community-scripts/Proxmox
Found an undocumented exit code or have a solution to share? Please:
-1. Open an issue on [GitHub](https://github.com/community-scripts/ProxmoxVED/issues)
+1. Open an issue on [GitHub](https://github.com/--full/ProxmoxVED/issues)
2. Include:
- Exit code number
- Error message
diff --git a/docs/README.md b/docs/README.md
index 64afedaa..0e629bac 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -272,7 +272,7 @@ Documentation for `/misc` - 9 core function libraries with complete references.
Found an error? Want to improve docs?
1. See: [contribution/README.md](contribution/README.md) for full contribution guide
-2. Open issue: [GitHub Issues](https://github.com/community-scripts/ProxmoxVED/issues)
+2. Open issue: [GitHub Issues](https://github.com/--full/ProxmoxVED/issues)
3. Or submit PR with improvements
---
diff --git a/docs/contribution/CONTRIBUTING.md b/docs/contribution/CONTRIBUTING.md
index dcf1a8e8..252ad793 100644
--- a/docs/contribution/CONTRIBUTING.md
+++ b/docs/contribution/CONTRIBUTING.md
@@ -36,8 +36,8 @@ Before contributing, set up:
Use these templates as your starting point:
-- [CT template: `AppName.sh`](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh)
-- [Install template: `AppName-install.sh`](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh)
+- [CT template: `AppName.sh`](https://github.com/--full/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh)
+- [Install template: `AppName-install.sh`](https://github.com/--full/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh)
## Script types
@@ -45,7 +45,7 @@ Use these templates as your starting point:
Reference guide:
-- [CT coding guide for `AppName.sh`](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md)
+- [CT coding guide for `AppName.sh`](https://github.com/--full/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md)
This script is responsible for:
@@ -57,7 +57,7 @@ This script is responsible for:
Reference guide:
-- [Install coding guide for `AppName-install.sh`](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.md)
+- [Install coding guide for `AppName-install.sh`](https://github.com/--full/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.md)
This script is responsible for:
@@ -131,7 +131,7 @@ Add a Json file with all Metadata for the App. [DOCS](https://community-scripts.
## Pages
-- [CT Template: AppName.sh](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh)
-- [Install Template: AppName-install.sh](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh)
+- [CT Template: AppName.sh](https://github.com/--full/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh)
+- [Install Template: AppName-install.sh](https://github.com/--full/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh)
- [Fork setup guide](./FORK_SETUP.md)
- [Contribution README](./README.md)
diff --git a/docs/contribution/FORK_SETUP.md b/docs/contribution/FORK_SETUP.md
index 7f0c2bbc..0da1f411 100644
--- a/docs/contribution/FORK_SETUP.md
+++ b/docs/contribution/FORK_SETUP.md
@@ -98,7 +98,7 @@ The script updates these documentation files:
### Keep Your Fork Updated
```bash
# Add upstream if you haven't already
-git remote add upstream https://github.com/community-scripts/ProxmoxVED.git
+git remote add upstream https://github.com/--full/ProxmoxVED.git
# Get latest from upstream
git fetch upstream
diff --git a/docs/contribution/GUIDE.md b/docs/contribution/GUIDE.md
index 52c4d950..9a5b3695 100644
--- a/docs/contribution/GUIDE.md
+++ b/docs/contribution/GUIDE.md
@@ -30,7 +30,7 @@
```bash
# 1. Fork the repository on GitHub
-# Visit: https://github.com/community-scripts/ProxmoxVED
+# Visit: https://github.com/--full/ProxmoxVED
# Click: Fork (top right)
# 2. Clone your fork
@@ -174,7 +174,7 @@ Examples:
```bash
# 1. Fork on GitHub (one-time)
-# Visit: https://github.com/community-scripts/ProxmoxVED
+# Visit: https://github.com/--full/ProxmoxVED
# Click: Fork
# 2. Clone your fork
@@ -182,7 +182,7 @@ git clone https://github.com/YOUR_USERNAME/ProxmoxVED.git
cd ProxmoxVED
# 3. Add upstream remote for updates
-git remote add upstream https://github.com/community-scripts/ProxmoxVED.git
+git remote add upstream https://github.com/--full/ProxmoxVED.git
# 4. Create feature branch
git checkout -b feat/add-myapp
@@ -561,7 +561,7 @@ fi
# Copyright (c) 2021-2026 community-scripts ORG
# Author: YourUsername
# Co-Author: AnotherAuthor (for collaborative work)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/app/repo
# Description: Brief description of what this script does
```
@@ -762,7 +762,7 @@ git push origin feat/add-myapp --force-with-lease
### Step 3: Create Pull Request on GitHub
-**Visit**: https://github.com/community-scripts/ProxmoxVED/pulls
+**Visit**: https://github.com/--full/ProxmoxVED/pulls
**Click**: "New Pull Request"
@@ -982,8 +982,8 @@ echo "Edit /opt/myapp/config.json to customize settings"
- **Documentation**: `/docs` directory and wikis
- **Function Reference**: `/misc/*.md` wiki files
- **Examples**: Look at similar applications in `/ct` and `/install`
-- **GitHub Issues**: https://github.com/community-scripts/ProxmoxVED/issues
-- **Discussions**: https://github.com/community-scripts/ProxmoxVED/discussions
+- **GitHub Issues**: https://github.com/--full/ProxmoxVED/issues
+- **Discussions**: https://github.com/--full/ProxmoxVED/discussions
### Ask Questions
diff --git a/docs/contribution/README.md b/docs/contribution/README.md
index 01662225..eccbbd85 100644
--- a/docs/contribution/README.md
+++ b/docs/contribution/README.md
@@ -21,7 +21,7 @@ Complete guide to contributing to the ProxmoxVED project - from your first fork
```bash
# 1. Fork on GitHub
-# Visit: https://github.com/community-scripts/ProxmoxVED → Fork (top right)
+# Visit: https://github.com/--full/ProxmoxVED → Fork (top right)
# 2. Clone your fork
git clone https://github.com/YOUR_USERNAME/ProxmoxVED.git
@@ -81,7 +81,7 @@ git config user.name "Your Name"
git config user.email "your.email@example.com"
# Add upstream remote for syncing
-git remote add upstream https://github.com/community-scripts/ProxmoxVED.git
+git remote add upstream https://github.com/--full/ProxmoxVED.git
# Verify remotes
git remote -v
@@ -329,9 +329,9 @@ bash docs/contribution/setup-fork.sh
## 📞 Contact & Support
-- **GitHub**: https://github.com/community-scripts/ProxmoxVED
-- **Issues**: https://github.com/community-scripts/ProxmoxVED/issues
-- **Discussions**: https://github.com/community-scripts/ProxmoxVED/discussions
+- **GitHub**: https://github.com/--full/ProxmoxVED
+- **Issues**: https://github.com/--full/ProxmoxVED/issues
+- **Discussions**: https://github.com/--full/ProxmoxVED/discussions
- **Discord**: [Join Server](https://discord.gg/UHrpNWGwkH)
---
diff --git a/docs/contribution/USER_SUBMITTED_GUIDES.md b/docs/contribution/USER_SUBMITTED_GUIDES.md
index 6d9941c5..87683a53 100644
--- a/docs/contribution/USER_SUBMITTED_GUIDES.md
+++ b/docs/contribution/USER_SUBMITTED_GUIDES.md
@@ -1,6 +1,6 @@
User Submitted Guides
diff --git a/docs/contribution/setup-fork.sh b/docs/contribution/setup-fork.sh
index cfd01d32..c6df498e 100644
--- a/docs/contribution/setup-fork.sh
+++ b/docs/contribution/setup-fork.sh
@@ -182,15 +182,15 @@ create_git_setup_info() {
git remote -v
# If you don't have 'upstream' configured, add it:
-git remote add upstream https://github.com/community-scripts/ProxmoxVED.git
+git remote add upstream https://github.com/--full/ProxmoxVED.git
# Verify both remotes exist:
git remote -v
# Should show:
# origin https://github.com/YOUR_USERNAME/ProxmoxVED.git (fetch)
# origin https://github.com/YOUR_USERNAME/ProxmoxVED.git (push)
-# upstream https://github.com/community-scripts/ProxmoxVED.git (fetch)
-# upstream https://github.com/community-scripts/ProxmoxVED.git (push)
+# upstream https://github.com/--full/ProxmoxVED.git (fetch)
+# upstream https://github.com/--full/ProxmoxVED.git (push)
```
### Configure Git User (if not done globally)
@@ -316,7 +316,7 @@ echo ""
print_success "All documentation links updated to point to your fork"
print_info "Your fork: https://github.com/$USERNAME/$REPO_NAME"
-print_info "Upstream: https://github.com/community-scripts/ProxmoxVED"
+print_info "Upstream: https://github.com/--full/ProxmoxVED"
echo ""
echo -e "${BLUE}Next Steps:${NC}"
diff --git a/docs/contribution/templates_ct/AppName.md b/docs/contribution/templates_ct/AppName.md
index 8507c7c2..d7fc0800 100644
--- a/docs/contribution/templates_ct/AppName.md
+++ b/docs/contribution/templates_ct/AppName.md
@@ -52,7 +52,7 @@ source <(curl -s https://raw.githubusercontent.com/[USER]/[REPO]/refs/heads/[BRA
Final script:
```bash
-source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -s https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
```
> [!CAUTION]
@@ -67,7 +67,7 @@ Example:
```bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: [YourUserName]
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: [SOURCE_URL]
```
diff --git a/docs/contribution/templates_ct/AppName.sh b/docs/contribution/templates_ct/AppName.sh
index cf9333c4..a0ef6551 100644
--- a/docs/contribution/templates_ct/AppName.sh
+++ b/docs/contribution/templates_ct/AppName.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
-source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
+source <(curl -s https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# Author: [YourUserName]
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: [SOURCE_URL]
# App Default Values
diff --git a/docs/contribution/templates_install/AppName-install.md b/docs/contribution/templates_install/AppName-install.md
index 8e23af37..219a9fe3 100644
--- a/docs/contribution/templates_install/AppName-install.md
+++ b/docs/contribution/templates_install/AppName-install.md
@@ -59,7 +59,7 @@ Example:
```bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: [YourUserName]
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: [SOURCE_URL]
```
diff --git a/docs/contribution/templates_install/AppName-install.sh b/docs/contribution/templates_install/AppName-install.sh
index eb573fa3..d7ea6cee 100644
--- a/docs/contribution/templates_install/AppName-install.sh
+++ b/docs/contribution/templates_install/AppName-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: [YourUserName]
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: [SOURCE_URL]
# Import Functions und Setup
diff --git a/docs/ct/DETAILED_GUIDE.md b/docs/ct/DETAILED_GUIDE.md
index f42063c2..d153d542 100644
--- a/docs/ct/DETAILED_GUIDE.md
+++ b/docs/ct/DETAILED_GUIDE.md
@@ -144,7 +144,7 @@ msg_ok "Completed successfully!\n"
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: YourUsername
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/example/project
# Import main orchestrator
diff --git a/docs/guides/netboot-xyz.md b/docs/guides/netboot-xyz.md
index 6639f718..662d2595 100644
--- a/docs/guides/netboot-xyz.md
+++ b/docs/guides/netboot-xyz.md
@@ -44,7 +44,7 @@ Your container is the **signpost**. The internet is the **library**.
Run on your **Proxmox host**:
```bash
-bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/netboot-xyz.sh)"
+bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/ct/netboot-xyz.sh)"
```
Creates a minimal Debian 13 LXC container:
@@ -232,7 +232,7 @@ Full documentation: [netboot.xyz/docs](https://netboot.xyz/docs/)
The update script preserves your `boot.cfg` customizations, updates menus and bootloaders to the latest release:
```bash
-bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/netboot-xyz.sh)"
+bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/ct/netboot-xyz.sh)"
```
---
diff --git a/docs/install/DETAILED_GUIDE.md b/docs/install/DETAILED_GUIDE.md
index 8a691251..0e7d6d89 100644
--- a/docs/install/DETAILED_GUIDE.md
+++ b/docs/install/DETAILED_GUIDE.md
@@ -120,7 +120,7 @@ cleanup_lxc
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: YourUsername
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/application/repo
# Load all available functions (from core.func + tools.func)
diff --git a/install/affine-install.sh b/install/affine-install.sh
index af50b088..67e4a465 100644
--- a/install/affine-install.sh
+++ b/install/affine-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/toeverything/AFFiNE
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/akaunting-install.sh b/install/akaunting-install.sh
index 1538ffe4..9a65cd89 100644
--- a/install/akaunting-install.sh
+++ b/install/akaunting-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://akaunting.com/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/almalinux-install.sh b/install/almalinux-install.sh
index 0ead2dd8..6d8d69a4 100644
--- a/install/almalinux-install.sh
+++ b/install/almalinux-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://almalinux.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/alpine-coredns-install.sh b/install/alpine-coredns-install.sh
index adf6c3c6..0287b02b 100644
--- a/install/alpine-coredns-install.sh
+++ b/install/alpine-coredns-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: CopilotAssistant (community-scripts)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/coredns/coredns
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/alpine-install.sh b/install/alpine-install.sh
index 91051d2c..5ebfeb68 100644
--- a/install/alpine-install.sh
+++ b/install/alpine-install.sh
@@ -3,7 +3,7 @@
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT
-# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# https://github.com/--full/ProxmoxVED/raw/main/LICENSE
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
diff --git a/install/archlinux-install.sh b/install/archlinux-install.sh
index 48f7a319..66c49fe3 100644
--- a/install/archlinux-install.sh
+++ b/install/archlinux-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://archlinux.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/arm-install.sh b/install/arm-install.sh
index 971a4f87..56452d9f 100644
--- a/install/arm-install.sh
+++ b/install/arm-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/automatic-ripping-machine/automatic-ripping-machine
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/authentik-install.sh b/install/authentik-install.sh
index 3147a7b5..dbe8b44d 100644
--- a/install/authentik-install.sh
+++ b/install/authentik-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Thieneret
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/goauthentik/authentik
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/baserow-install.sh b/install/baserow-install.sh
index 5aa93182..63c7454c 100644
--- a/install/baserow-install.sh
+++ b/install/baserow-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/baserow/baserow
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/bitfocus-companion-install.sh b/install/bitfocus-companion-install.sh
index a75f3826..6f99b3de 100644
--- a/install/bitfocus-companion-install.sh
+++ b/install/bitfocus-companion-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: glabutis
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/bitfocus/companion
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/blinko-install.sh b/install/blinko-install.sh
index f6000b74..2cf5730a 100644
--- a/install/blinko-install.sh
+++ b/install/blinko-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://blinko.space/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/caddymanager-install.sh b/install/caddymanager-install.sh
index f5d77f49..7df6d048 100644
--- a/install/caddymanager-install.sh
+++ b/install/caddymanager-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Slaviša Arežina (tremor021)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/caddymanager/caddymanager
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/centos-install.sh b/install/centos-install.sh
index 8ee318e9..53164807 100644
--- a/install/centos-install.sh
+++ b/install/centos-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.centos.org/centos-stream/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/certimate-install.sh b/install/certimate-install.sh
index e444b2eb..0231a172 100644
--- a/install/certimate-install.sh
+++ b/install/certimate-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://certimate.me/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/clickhouse-install.sh b/install/clickhouse-install.sh
index 7098b2dc..049e08cd 100644
--- a/install/clickhouse-install.sh
+++ b/install/clickhouse-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://clickhouse.com
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/cliproxyapi-install.sh b/install/cliproxyapi-install.sh
index 0dc277dd..ff9edd9f 100644
--- a/install/cliproxyapi-install.sh
+++ b/install/cliproxyapi-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: mathiasnagler
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/router-for-me/CLIProxyAPI
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/ddns-updater-install.sh b/install/ddns-updater-install.sh
index d32849d5..e6bbfbc2 100644
--- a/install/ddns-updater-install.sh
+++ b/install/ddns-updater-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: reptil1990
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/qdm12/ddns-updater
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/debian-install.sh b/install/debian-install.sh
index 1d0c6fa1..9b901bf8 100644
--- a/install/debian-install.sh
+++ b/install/debian-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source:
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/deferred/jumpserver-install.sh b/install/deferred/jumpserver-install.sh
index bb5687b6..da488177 100644
--- a/install/deferred/jumpserver-install.sh
+++ b/install/deferred/jumpserver-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Nícolas Pastorello (opastorello)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/jumpserver/jumpserver
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/deferred/maxun-install.sh b/install/deferred/maxun-install.sh
index 130b90dd..9d64187a 100644
--- a/install/deferred/maxun-install.sh
+++ b/install/deferred/maxun-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/getmaxun/maxun
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/deferred/ocis-install.sh b/install/deferred/ocis-install.sh
index 3e819a76..dea74f2e 100644
--- a/install/deferred/ocis-install.sh
+++ b/install/deferred/ocis-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source:
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/deferred/piler-install.sh b/install/deferred/piler-install.sh
index bd90a451..443d5e95 100644
--- a/install/deferred/piler-install.sh
+++ b/install/deferred/piler-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.mailpiler.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/deferred/polaris-install.sh b/install/deferred/polaris-install.sh
index bb6fe0d3..5b9cf227 100644
--- a/install/deferred/polaris-install.sh
+++ b/install/deferred/polaris-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (Canbiz)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/agersant/polaris
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/deferred/rybbit-install.sh b/install/deferred/rybbit-install.sh
index 8f45864e..75f1e62e 100644
--- a/install/deferred/rybbit-install.sh
+++ b/install/deferred/rybbit-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/rybbit-io/rybbit
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/deferred/timescaledb-install.sh b/install/deferred/timescaledb-install.sh
index 234593a1..24965d9a 100644
--- a/install/deferred/timescaledb-install.sh
+++ b/install/deferred/timescaledb-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
diff --git a/install/deferred/transmission-openvpn-install.sh b/install/deferred/transmission-openvpn-install.sh
index d9202ff0..ea5cf446 100644
--- a/install/deferred/transmission-openvpn-install.sh
+++ b/install/deferred/transmission-openvpn-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: SunFlowerOwl
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/haugene/docker-transmission-openvpn
# Import Functions und Setup
diff --git a/install/degoog-install.sh b/install/degoog-install.sh
index cb1dd23c..26aae44f 100644
--- a/install/degoog-install.sh
+++ b/install/degoog-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: vhsdream
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/fccview/degoog
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/devuan-install.sh b/install/devuan-install.sh
index cbd60de1..aa1ffddc 100644
--- a/install/devuan-install.sh
+++ b/install/devuan-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.devuan.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/discourse-install.sh b/install/discourse-install.sh
index c78e2529..f856c24b 100644
--- a/install/discourse-install.sh
+++ b/install/discourse-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.discourse.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/docuseal-install.sh b/install/docuseal-install.sh
index 616a1d8d..e717c577 100644
--- a/install/docuseal-install.sh
+++ b/install/docuseal-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.docuseal.com/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/dynacat-install.sh b/install/dynacat-install.sh
index 47359213..8babb98e 100644
--- a/install/dynacat-install.sh
+++ b/install/dynacat-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/Panonim/dynacat
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/ente-install.sh b/install/ente-install.sh
index dc127507..95600e81 100644
--- a/install/ente-install.sh
+++ b/install/ente-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/ente-io/ente
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/erpnext-install.sh b/install/erpnext-install.sh
index bb10a21e..9cbf4b06 100644
--- a/install/erpnext-install.sh
+++ b/install/erpnext-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/frappe/erpnext
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/espconnect-install.sh b/install/espconnect-install.sh
index 6a4a21e2..0c731d2c 100644
--- a/install/espconnect-install.sh
+++ b/install/espconnect-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: John Lombardo
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/thelastoutpostworkshop/ESPConnect
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/fedora-install.sh b/install/fedora-install.sh
index e9f1609b..f46a5b0f 100644
--- a/install/fedora-install.sh
+++ b/install/fedora-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://fedoraproject.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/fleet-install.sh b/install/fleet-install.sh
index 42ceb220..06971bed 100644
--- a/install/fleet-install.sh
+++ b/install/fleet-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/fleetdm/fleet
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/forgejo-runner-install.sh b/install/forgejo-runner-install.sh
index 0875d002..b9dba1d6 100644
--- a/install/forgejo-runner-install.sh
+++ b/install/forgejo-runner-install.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Simon Friedrich (lengschder97)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://forgejo.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/garmin-grafana-install.sh b/install/garmin-grafana-install.sh
index 921e814b..b4eddeab 100644
--- a/install/garmin-grafana-install.sh
+++ b/install/garmin-grafana-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: aliaksei135
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/arpanghosh8453/garmin-grafana
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/gentoo-install.sh b/install/gentoo-install.sh
index afa4ccbc..f72848f8 100644
--- a/install/gentoo-install.sh
+++ b/install/gentoo-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.gentoo.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/godoxy-install.sh b/install/godoxy-install.sh
index 2da61cd3..df96ddba 100644
--- a/install/godoxy-install.sh
+++ b/install/godoxy-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/yusing/godoxy
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/hoodik-install.sh b/install/hoodik-install.sh
index 1138e4c4..d7476aef 100644
--- a/install/hoodik-install.sh
+++ b/install/hoodik-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/hudikhq/hoodik
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/invidious-install.sh b/install/invidious-install.sh
index 003c35bc..179c9e04 100644
--- a/install/invidious-install.sh
+++ b/install/invidious-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: vhsdream
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/iv-org/invidious
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/invoiceshelf-install.sh b/install/invoiceshelf-install.sh
index 8c9969b9..1bb4397a 100644
--- a/install/invoiceshelf-install.sh
+++ b/install/invoiceshelf-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://invoiceshelf.com/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/kan-install.sh b/install/kan-install.sh
index 9249a9cf..f490aae8 100644
--- a/install/kan-install.sh
+++ b/install/kan-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/kanbn/kan
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/labca-install.sh b/install/labca-install.sh
index b1bac5c4..f4768c86 100644
--- a/install/labca-install.sh
+++ b/install/labca-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/hakwerk/labca
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/librechat-install.sh b/install/librechat-install.sh
index aa1f4df2..a48ba281 100644
--- a/install/librechat-install.sh
+++ b/install/librechat-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/danny-avila/LibreChat
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/lobehub-install.sh b/install/lobehub-install.sh
index ad85b04b..4e3a4d26 100644
--- a/install/lobehub-install.sh
+++ b/install/lobehub-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/lobehub/lobehub
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/localagi-install.sh b/install/localagi-install.sh
index 86bae1e6..8e732ddd 100644
--- a/install/localagi-install.sh
+++ b/install/localagi-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: BillyOutlast
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/mudler/LocalAGI
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/lychee-install.sh b/install/lychee-install.sh
index 9b212c5d..48777ae7 100644
--- a/install/lychee-install.sh
+++ b/install/lychee-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/LycheeOrg/Lychee
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/matomo-install.sh b/install/matomo-install.sh
index 657e9c2c..a89eb94d 100644
--- a/install/matomo-install.sh
+++ b/install/matomo-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://matomo.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/nagios-install.sh b/install/nagios-install.sh
index bcac72b3..79d38332 100644
--- a/install/nagios-install.sh
+++ b/install/nagios-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/NagiosEnterprises/nagioscore
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/neko-install.sh b/install/neko-install.sh
index 1dedf7e2..3336617a 100644
--- a/install/neko-install.sh
+++ b/install/neko-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: CanbiZ (MickLesk)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://neko.m1k1o.net/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/nezha-install.sh b/install/nezha-install.sh
index 1089751a..f342b242 100644
--- a/install/nezha-install.sh
+++ b/install/nezha-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: GitHub Copilot (GPT-5.3-Codex)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/nezhahq/nezha
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/openeuler-install.sh b/install/openeuler-install.sh
index b323b786..dc49a80f 100644
--- a/install/openeuler-install.sh
+++ b/install/openeuler-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.openeuler.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/opensuse-install.sh b/install/opensuse-install.sh
index e41dccbf..cd31b631 100644
--- a/install/opensuse-install.sh
+++ b/install/opensuse-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.opensuse.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/oxicloud-install.sh b/install/oxicloud-install.sh
index 00fc0005..9e6890db 100644
--- a/install/oxicloud-install.sh
+++ b/install/oxicloud-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: vhsdream
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/DioCrafts/OxiCloud
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/paperclip-install.sh b/install/paperclip-install.sh
index d9086965..62fede83 100644
--- a/install/paperclip-install.sh
+++ b/install/paperclip-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Fabian Pulch (fpulch)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/paperclipai/paperclip
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/papermark-install.sh b/install/papermark-install.sh
index 70c4e011..08be8056 100644
--- a/install/papermark-install.sh
+++ b/install/papermark-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.papermark.com/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/pixelfed-install.sh b/install/pixelfed-install.sh
index 65a28cb3..024c496b 100644
--- a/install/pixelfed-install.sh
+++ b/install/pixelfed-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://pixelfed.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/plane-install.sh b/install/plane-install.sh
index 28a2363f..4a08a4c8 100644
--- a/install/plane-install.sh
+++ b/install/plane-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: onionrings29
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://plane.so
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/postiz-install.sh b/install/postiz-install.sh
index afaf7e06..dd322b4c 100644
--- a/install/postiz-install.sh
+++ b/install/postiz-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/gitroomhq/postiz-app
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/puter-install.sh b/install/puter-install.sh
index 685b4dba..c250cb25 100644
--- a/install/puter-install.sh
+++ b/install/puter-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/HeyPuter/puter
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/rockylinux-install.sh b/install/rockylinux-install.sh
index 247377dc..00e73bb3 100644
--- a/install/rockylinux-install.sh
+++ b/install/rockylinux-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://rockylinux.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/rss-bridge-install.sh b/install/rss-bridge-install.sh
index 4cb44851..f4bf7d07 100644
--- a/install/rss-bridge-install.sh
+++ b/install/rss-bridge-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://rss-bridge.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/shiori-install.sh b/install/shiori-install.sh
index a0b4c48f..0164fa8c 100644
--- a/install/shiori-install.sh
+++ b/install/shiori-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: GitHub Copilot (GPT-5.3-Codex)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/go-shiori/shiori
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/shlink-install.sh b/install/shlink-install.sh
index a40714bd..0e9a64aa 100644
--- a/install/shlink-install.sh
+++ b/install/shlink-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://shlink.io/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/simplelogin-install.sh b/install/simplelogin-install.sh
index 1b6a6000..bfa2ebcc 100644
--- a/install/simplelogin-install.sh
+++ b/install/simplelogin-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/simple-login/app
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/skylite-ux-install.sh b/install/skylite-ux-install.sh
index c81f0f81..c67ae4b3 100644
--- a/install/skylite-ux-install.sh
+++ b/install/skylite-ux-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: bzumhagen
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/Wetzel402/Skylite-UX
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/slink-install.sh b/install/slink-install.sh
index 166c903f..0731b29a 100644
--- a/install/slink-install.sh
+++ b/install/slink-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/andrii-kryvoviaz/slink
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/solidtime-install.sh b/install/solidtime-install.sh
index 8879a948..52a620ba 100644
--- a/install/solidtime-install.sh
+++ b/install/solidtime-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://www.solidtime.io/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/soulsync-install.sh b/install/soulsync-install.sh
index e5b2a329..d650f00c 100644
--- a/install/soulsync-install.sh
+++ b/install/soulsync-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/Nezreka/SoulSync
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/storyteller-install.sh b/install/storyteller-install.sh
index 2468c22a..becaf7f6 100644
--- a/install/storyteller-install.sh
+++ b/install/storyteller-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://gitlab.com/storyteller-platform/storyteller
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/surrealdb-install.sh b/install/surrealdb-install.sh
index 08de549d..0381e2dc 100644
--- a/install/surrealdb-install.sh
+++ b/install/surrealdb-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: PouletteMC
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://surrealdb.com
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/teable-install.sh b/install/teable-install.sh
index 8068679f..339988a0 100644
--- a/install/teable-install.sh
+++ b/install/teable-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/teableio/teable
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/tolgee-install.sh b/install/tolgee-install.sh
index 3ab834da..7000010f 100644
--- a/install/tolgee-install.sh
+++ b/install/tolgee-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/tolgee/tolgee-platform
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/tor-snowflake-install.sh b/install/tor-snowflake-install.sh
index 1d49a501..3533d517 100644
--- a/install/tor-snowflake-install.sh
+++ b/install/tor-snowflake-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2025 community-scripts ORG
# Author: KernelSailor
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://snowflake.torproject.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/tubearchivist-install.sh b/install/tubearchivist-install.sh
index e277447f..16e0fa7b 100644
--- a/install/tubearchivist-install.sh
+++ b/install/tubearchivist-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/tubearchivist/tubearchivist
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/twenty-install.sh b/install/twenty-install.sh
index dc245bc2..fbea5734 100644
--- a/install/twenty-install.sh
+++ b/install/twenty-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/twentyhq/twenty
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/install/ubuntu-install.sh b/install/ubuntu-install.sh
index 0d2e5293..b6edfbba 100644
--- a/install/ubuntu-install.sh
+++ b/install/ubuntu-install.sh
@@ -3,7 +3,7 @@
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT
-# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# https://github.com/--full/ProxmoxVED/raw/main/LICENSE
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
diff --git a/install/umbraco-install.sh b/install/umbraco-install.sh
index 38f0370b..837d50a4 100644
--- a/install/umbraco-install.sh
+++ b/install/umbraco-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Joost van den Berg
-# License: MIT | https://github.com/montagneid/ProxmoxVE/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/umbraco/Umbraco-CMS
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
@@ -18,10 +18,10 @@ var_project_name="cms"
msg_info "Installing Dependencies"
$STD apt-get update
$STD apt-get install -y \
- curl \
- wget \
ca-certificates \
- uuid-runtime
+ uuid-runtime \
+ nginx \
+ vsftpd
msg_info "Installing .NET SDK 10.0 using Microsoft install script"
wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
@@ -33,12 +33,6 @@ export DOTNET_ROOT=/usr/share/dotnet
export PATH=$PATH:$DOTNET_ROOT
msg_ok "Installed .NET SDK 10.0"
-msg_info "Installing Nginx and FTP Server"
-$STD apt-get install -y \
- nginx \
- vsftpd
-msg_ok "Installed Nginx and FTP Server"
-
read -r -p "${TAB3}Enable PostgreSQL database (allow remote connections)? (Default: SQLite) " prompt
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
msg_info "Setting up PostgreSQL (Patience)"
@@ -60,7 +54,6 @@ msg_ok "Umbraco templates installed and project created"
msg_info "Configuring database connection and unattended setup"
cd /var/www/html/$var_project_name
UMBRACO_PASS=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13)
-apt-get install -y jq &>/dev/null
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
$STD dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL
@@ -218,7 +211,7 @@ cat >"$PUBLISH_PROFILE_DIR/FTPProfile.pubxml" <false
${PROJECT_GUID}
${CONTAINER_IP}
- true
+ false
true
${var_project_name}-publish
ftpuser
diff --git a/install/zitadel-install.sh b/install/zitadel-install.sh
index c1858cb1..c92380ed 100644
--- a/install/zitadel-install.sh
+++ b/install/zitadel-install.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: dave-yap (dave-yap) | Co-Author: remz1337
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# Source: https://zitadel.com/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
diff --git a/misc/alpine-install.func b/misc/alpine-install.func
index 31b34bae..1186b8fa 100644
--- a/misc/alpine-install.func
+++ b/misc/alpine-install.func
@@ -1,12 +1,12 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: tteck (tteckster)
# Co-Author: MickLesk
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
if ! command -v curl >/dev/null 2>&1; then
apk update && apk add curl >/dev/null 2>&1
fi
-COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main}"
+COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://raw.githubusercontent.com/--full/ProxmoxVED/main}"
source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/core.func")
source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/error_handler.func")
load_functions
@@ -144,7 +144,7 @@ motd_ssh() {
echo -e "echo -e \"${YW} OS: ${GN}${OS_NAME} - Version: ${OS_VERSION}${CL}\"" >>"$PROFILE_FILE"
echo -e "echo -e \"${YW} Hostname: ${GN}\$(hostname)${CL}\"" >>"$PROFILE_FILE"
echo -e "echo -e \"${YW} IP Address: ${GN}${IP}${CL}\"" >>"$PROFILE_FILE"
- echo -e "echo -e \"${YW} Repository: ${GN}https://github.com/community-scripts/ProxmoxVED${CL}\"" >>"$PROFILE_FILE"
+ echo -e "echo -e \"${YW} Repository: ${GN}https://github.com/--full/ProxmoxVED${CL}\"" >>"$PROFILE_FILE"
echo "echo \"\"" >>"$PROFILE_FILE"
if [[ "${SSH_ROOT}" == "yes" ]]; then
@@ -186,6 +186,6 @@ EOF
msg_ok "Customized Container"
fi
- echo "bash -c \"\$(curl -fsSL https://github.com/community-scripts/ProxmoxVED/raw/main/ct/${app}.sh)\"" >/usr/bin/update
+ echo "bash -c \"\$(curl -fsSL https://github.com/--full/ProxmoxVED/raw/main/ct/${app}.sh)\"" >/usr/bin/update
chmod +x /usr/bin/update
}
diff --git a/misc/api.func b/misc/api.func
index 2c293191..4a20fa63 100644
--- a/misc/api.func
+++ b/misc/api.func
@@ -1,6 +1,6 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: michelroegl-brunner | MickLesk
-# License: MIT | https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/LICENSE
+# License: MIT | https://raw.githubusercontent.com/--full/ProxmoxVED/main/LICENSE
# ==============================================================================
# API.FUNC - TELEMETRY & DIAGNOSTICS API
diff --git a/misc/build.func b/misc/build.func
index 73514067..30ec08b4 100644
--- a/misc/build.func
+++ b/misc/build.func
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: tteck (tteckster) | MickLesk | michelroegl-brunner
-# License: MIT | https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/LICENSE
+# License: MIT | https://raw.githubusercontent.com/--full/ProxmoxVED/main/LICENSE
# ==============================================================================
# BUILD.FUNC - LXC CONTAINER BUILD & CONFIGURATION
@@ -85,7 +85,7 @@ variables() {
# Configurable base URL for development — override with COMMUNITY_SCRIPTS_URL
# See docs/DEV_MODE.md for details
-COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main}"
+COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://raw.githubusercontent.com/--full/ProxmoxVED/main}"
source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func")
@@ -5171,7 +5171,7 @@ PROFILE
set +Eeuo pipefail
trap - ERR
local _LXC_CAPTURE_LOG="/tmp/.install-capture-${SESSION_ID}.log"
- lxc-attach -n "$CTID" -- bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/install/${var_install}.sh)" 2>&1 | tee "$_LXC_CAPTURE_LOG"
+ lxc-attach -n "$CTID" -- bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/install/${var_install}.sh)" 2>&1 | tee "$_LXC_CAPTURE_LOG"
local apt_retry_exit=${PIPESTATUS[0]}
set -Eeuo pipefail
trap 'error_handler' ERR
@@ -6268,7 +6268,7 @@ description() {
cat <
-
+
${APP} LXC
diff --git a/misc/cloud-init.func b/misc/cloud-init.func
index 06c22a65..d47a24b6 100644
--- a/misc/cloud-init.func
+++ b/misc/cloud-init.func
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: community-scripts ORG
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/branch/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/branch/main/LICENSE
# Revision: 1
# ==============================================================================
@@ -17,7 +17,7 @@
# - Cloud-Init status monitoring and waiting
#
# Usage:
-# source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/cloud-init.func)
+# source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/cloud-init.func)
# setup_cloud_init "$VMID" "$STORAGE" "$HN" "yes"
#
# Compatible with: Debian, Ubuntu, and all Cloud-Init enabled distributions
diff --git a/misc/core.func b/misc/core.func
index af668c42..a625995c 100644
--- a/misc/core.func
+++ b/misc/core.func
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
-# License: MIT | https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/LICENSE
+# License: MIT | https://raw.githubusercontent.com/--full/ProxmoxVED/main/LICENSE
# ==============================================================================
# CORE FUNCTIONS - LXC CONTAINER UTILITIES
@@ -521,7 +521,7 @@ silent() {
if [[ $rc -ne 0 ]]; then
# Source explain_exit_code if needed
if ! declare -f explain_exit_code >/dev/null 2>&1; then
- source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/error_handler.func)
+ source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/error_handler.func)
fi
local explanation
@@ -794,7 +794,7 @@ exit_script() {
get_header() {
local app_name=$(echo "${APP,,}" | tr -d ' ')
local app_type=${APP_TYPE:-ct} # Default to 'ct' if not set
- local header_url="https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/${app_type}/headers/${app_name}"
+ local header_url="https://raw.githubusercontent.com/--full/ProxmoxVED/main/${app_type}/headers/${app_name}"
local local_header_path="/usr/local/community-scripts/headers/${app_type}/${app_name}"
mkdir -p "$(dirname "$local_header_path")"
diff --git a/misc/error_handler.func b/misc/error_handler.func
index 4e5e7514..89746470 100644
--- a/misc/error_handler.func
+++ b/misc/error_handler.func
@@ -4,7 +4,7 @@
# ------------------------------------------------------------------------------
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# ------------------------------------------------------------------------------
#
# Provides comprehensive error handling and signal management for all scripts.
diff --git a/misc/install.func b/misc/install.func
index ee7818db..d05e6769 100644
--- a/misc/install.func
+++ b/misc/install.func
@@ -2,7 +2,7 @@
# Author: tteck (tteckster)
# Co-Author: MickLesk
# Co-Author: michelroegl-brunner
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# ==============================================================================
# INSTALL.FUNC - UNIFIED CONTAINER INSTALLATION & SETUP
@@ -198,7 +198,7 @@ _bootstrap() {
fi
# Configurable base URL for development — override with COMMUNITY_SCRIPTS_URL
- COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main}"
+ COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://raw.githubusercontent.com/--full/ProxmoxVED/main}"
# Source core functions
source <($_fetch "$COMMUNITY_SCRIPTS_URL/misc/core.func")
@@ -1221,7 +1221,7 @@ echo -e "${RD:-}WARNING: This is a DEVELOPMENT version (ProxmoxVED). Do NOT use
echo -e "${YW:-} OS: ${GN:-}${os_name} - Version: ${os_version}${CL:-}"
echo -e "${YW:-} Hostname: ${GN:-}\$(hostname)${CL:-}"
echo -e "${YW:-} IP Address: ${GN:-}\$(hostname -I 2>/dev/null | awk '{print \$1}' || ip -4 addr show scope global | awk '/inet /{print \$2}' | cut -d/ -f1 | head -1)${CL:-}"
-echo -e "${YW:-} Repository: ${GN:-}https://github.com/community-scripts/ProxmoxVED${CL:-}"
+echo -e "${YW:-} Repository: ${GN:-}https://github.com/--full/ProxmoxVED${CL:-}"
echo ""
EOF
# openSUSE's /etc/bash.bashrc sources profile.d via `[ -x ]`, not `[ -r ]`,
@@ -1238,7 +1238,7 @@ EOF
${APPLICATION:-Container} LXC Container - DEV Repository
WARNING: This is a DEVELOPMENT version (ProxmoxVED). Do NOT use in production!
OS: ${os_name} - Version: ${os_version}
- Repository: https://github.com/community-scripts/ProxmoxVED
+ Repository: https://github.com/--full/ProxmoxVED
EOF
@@ -1424,7 +1424,7 @@ EOF
# Create update script
# Use var_os for OS-based containers, otherwise use app name
local update_script_name="${var_os:-$app}"
- echo "bash -c \"\$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/${update_script_name}.sh)\"" >/usr/bin/update
+ echo "bash -c \"\$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/ct/${update_script_name}.sh)\"" >/usr/bin/update
chmod +x /usr/bin/update
# Inject SSH authorized keys if provided
diff --git a/misc/vm-app.func b/misc/vm-app.func
index fe2ddbe2..470f0af1 100644
--- a/misc/vm-app.func
+++ b/misc/vm-app.func
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/LICENSE
+# License: MIT | https://raw.githubusercontent.com/--full/ProxmoxVED/main/LICENSE
# ==============================================================================
# VM-APP.FUNC - DEPLOY LXC APPLICATIONS INSIDE VIRTUAL MACHINES
diff --git a/misc/vm-core.func b/misc/vm-core.func
index c57a1197..efc2ac66 100644
--- a/misc/vm-core.func
+++ b/misc/vm-core.func
@@ -1,5 +1,5 @@
# Copyright (c) 2021-2026 community-scripts ORG
-# License: MIT | https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/LICENSE
+# License: MIT | https://raw.githubusercontent.com/--full/ProxmoxVED/main/LICENSE
set -euo pipefail
SPINNER_PID=""
@@ -35,7 +35,7 @@ load_functions() {
get_header() {
local app_name=$(echo "${APP,,}" | tr ' ' '-')
local app_type=${APP_TYPE:-vm}
- local header_url="https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/${app_type}/headers/${app_name}"
+ local header_url="https://raw.githubusercontent.com/--full/ProxmoxVED/main/${app_type}/headers/${app_name}"
local local_header_path="/usr/local/community-scripts/headers/${app_type}/${app_name}"
mkdir -p "$(dirname "$local_header_path")"
@@ -595,7 +595,7 @@ set_description() {
cat <
-
+
${NSAPP} VM
@@ -608,15 +608,15 @@ set_description() {
- GitHub
+ GitHub
- Discussions
+ Discussions
- Issues
+ Issues
EOF
diff --git a/tools/addon/_template.sh b/tools/addon/_template.sh
index 39851fef..1a001985 100644
--- a/tools/addon/_template.sh
+++ b/tools/addon/_template.sh
@@ -9,8 +9,8 @@
# ADDON TEMPLATE - Use this as starting point for new addon scripts
# ==============================================================================
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/core.func)
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/tools.func)
+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)
# ==============================================================================
# CONFIGURATION
@@ -291,7 +291,7 @@ echo -e "\${BL}━━━━━━━━━━━━━━━━━━━━━
echo ""
# Source tools.func for update functions
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/tools.func) 2>/dev/null || {
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/tools.func) 2>/dev/null || {
echo -e "\${RD}Failed to load tools.func\${CL}"
exit 1
}
diff --git a/tools/addon/code-server.sh b/tools/addon/code-server.sh
index 7d1c3b72..8889e276 100644
--- a/tools/addon/code-server.sh
+++ b/tools/addon/code-server.sh
@@ -3,7 +3,7 @@
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT
-# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# https://github.com/--full/ProxmoxVED/raw/main/LICENSE
function header_info {
cat <<"EOF"
diff --git a/tools/addon/cronmaster.sh b/tools/addon/cronmaster.sh
index 887558f8..1cbb5e4d 100644
--- a/tools/addon/cronmaster.sh
+++ b/tools/addon/cronmaster.sh
@@ -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/community-scripts/ProxmoxVED/main/tools/addon/cronmaster.sh)"
+CRONMASTER_ACTION=update bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/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/community-scripts/ProxmoxVED/main/tools/addon/cronmaster.sh)"
+CRONMASTER_ACTION=update bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/tools/addon/cronmaster.sh)"
UPDATEEOF
chmod +x /usr/local/bin/update_cronmaster
msg_ok "Created update script (/usr/local/bin/update_cronmaster)"
diff --git a/tools/addon/glances.sh b/tools/addon/glances.sh
index 2928fe46..68cbcb9e 100644
--- a/tools/addon/glances.sh
+++ b/tools/addon/glances.sh
@@ -48,7 +48,7 @@ install_glances_debian() {
msg_ok "Installed dependencies"
msg_info "Setting up Python + uv"
- source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/tools.func)
+ source <(curl -fsSL https://raw.githubusercontent.com/--full/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/community-scripts/ProxmoxVED/main/misc/tools.func)
+ source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/tools.func)
setup_uv PYTHON_VERSION="3.12"
msg_ok "Setup Python + uv"
diff --git a/tools/addon/grafana-loki.sh b/tools/addon/grafana-loki.sh
index 9d782272..d933af47 100644
--- a/tools/addon/grafana-loki.sh
+++ b/tools/addon/grafana-loki.sh
@@ -3,7 +3,7 @@
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT
-# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# https://github.com/--full/ProxmoxVED/raw/main/LICENSE
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
diff --git a/tools/addon/portracker.sh b/tools/addon/portracker.sh
index 736d22d7..c6069c70 100644
--- a/tools/addon/portracker.sh
+++ b/tools/addon/portracker.sh
@@ -252,7 +252,7 @@ echo -e "\${BL}━━━━━━━━━━━━━━━━━━━━━
echo ""
# Source tools.func for update functions
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/tools.func) 2>/dev/null || {
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/tools.func) 2>/dev/null || {
echo -e "\${RD}Failed to load tools.func\${CL}"
exit 1
}
diff --git a/tools/pve/container-restore-from-backup.sh b/tools/pve/container-restore-from-backup.sh
index d69e1c44..6a63ad5d 100644
--- a/tools/pve/container-restore-from-backup.sh
+++ b/tools/pve/container-restore-from-backup.sh
@@ -3,7 +3,7 @@
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT
-# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# https://github.com/--full/ProxmoxVED/raw/main/LICENSE
clear
if command -v pveversion >/dev/null 2>&1; then echo -e "⚠️ Can't Run from the Proxmox Shell"; exit; fi
diff --git a/tools/pve/core-restore-from-backup.sh b/tools/pve/core-restore-from-backup.sh
index 42289859..cf965a3c 100644
--- a/tools/pve/core-restore-from-backup.sh
+++ b/tools/pve/core-restore-from-backup.sh
@@ -3,7 +3,7 @@
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT
-# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# https://github.com/--full/ProxmoxVED/raw/main/LICENSE
clear
if command -v pveversion >/dev/null 2>&1; then echo -e "⚠️ Can't Run from the Proxmox Shell"; exit; fi
diff --git a/tools/pve/cron-update-lxcs.sh b/tools/pve/cron-update-lxcs.sh
index 85521571..6f277953 100644
--- a/tools/pve/cron-update-lxcs.sh
+++ b/tools/pve/cron-update-lxcs.sh
@@ -2,17 +2,17 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
#
# This script manages a local cron job for automatic LXC container OS updates.
# The update script is downloaded once, displayed for review, and installed
# locally. Cron runs the local copy — no remote code execution at runtime.
#
-# bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/tools/pve/cron-update-lxcs.sh)"
+# bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/tools/pve/cron-update-lxcs.sh)"
set -euo pipefail
-REPO_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main"
+REPO_URL="https://raw.githubusercontent.com/--full/ProxmoxVED/main"
SCRIPT_URL="${REPO_URL}/tools/pve/update-lxcs-cron.sh"
LOCAL_SCRIPT="/usr/local/bin/update-lxcs.sh"
CONF_FILE="/etc/update-lxcs.conf"
diff --git a/tools/pve/ct-batch-create.sh b/tools/pve/ct-batch-create.sh
index 12fa7a01..39185b6e 100644
--- a/tools/pve/ct-batch-create.sh
+++ b/tools/pve/ct-batch-create.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: GitHub Copilot
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
set -eEuo pipefail
diff --git a/tools/pve/frigate-support.sh b/tools/pve/frigate-support.sh
index c48e03bf..3c1f8983 100644
--- a/tools/pve/frigate-support.sh
+++ b/tools/pve/frigate-support.sh
@@ -3,7 +3,7 @@
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT
-# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# https://github.com/--full/ProxmoxVED/raw/main/LICENSE
function header_info {
clear
@@ -89,5 +89,5 @@ EOF
echo -e "\e[1;33m \nFinished....Reboot ${CTID} LXC to apply the changes.\n \e[0m"
# In the Proxmox web shell run
-# bash -c "$(curl -fsSL https://github.com/community-scripts/ProxmoxVED/raw/main/misc/frigate-support.sh)"
+# bash -c "$(curl -fsSL https://github.com/--full/ProxmoxVED/raw/main/misc/frigate-support.sh)"
# Reboot the LXC to apply the changes
diff --git a/tools/pve/host-backup.sh b/tools/pve/host-backup.sh
index 8e963169..b2e0a9f2 100644
--- a/tools/pve/host-backup.sh
+++ b/tools/pve/host-backup.sh
@@ -3,7 +3,7 @@
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT
-# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# https://github.com/--full/ProxmoxVED/raw/main/LICENSE
function header_info {
clear
diff --git a/tools/pve/hw-acceleration.sh b/tools/pve/hw-acceleration.sh
index 5d467044..7434e83b 100644
--- a/tools/pve/hw-acceleration.sh
+++ b/tools/pve/hw-acceleration.sh
@@ -6,9 +6,9 @@
# Only supports PRIVILEGED containers for GPU passthrough.
# License: MIT
# Author: MickLesk (CanbiZ)
-# Repo: https://github.com/community-scripts/ProxmoxVED
+# Repo: https://github.com/--full/ProxmoxVED
#
-# Usage: bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVED/raw/main/misc/hw-acceleration.sh)"
+# Usage: bash -c "$(wget -qLO - https://github.com/--full/ProxmoxVED/raw/main/misc/hw-acceleration.sh)"
#
# Requires:
# - Proxmox VE 8.1+
@@ -25,16 +25,16 @@
# - Interactive menu system via whiptail
#
# Proxmox LXC Hardware Passthrough & GPU Acceleration Setup
-# https://github.com/community-scripts/ProxmoxVED
+# https://github.com/--full/ProxmoxVED
set -euo pipefail
TEMP_DIR=$(mktemp -d)
trap 'rm -rf $TEMP_DIR' EXIT
-source <(wget -qO- https://github.com/community-scripts/ProxmoxVED/raw/main/tools/pve/gpu-nvidia.func)
-source <(wget -qO- https://github.com/community-scripts/ProxmoxVED/raw/main/tools/pve/gpu-intel.func)
-source <(wget -qO- https://github.com/community-scripts/ProxmoxVED/raw/main/tools/pve/gpu-amd.func)
+source <(wget -qO- https://github.com/--full/ProxmoxVED/raw/main/tools/pve/gpu-nvidia.func)
+source <(wget -qO- https://github.com/--full/ProxmoxVED/raw/main/tools/pve/gpu-intel.func)
+source <(wget -qO- https://github.com/--full/ProxmoxVED/raw/main/tools/pve/gpu-amd.func)
function header_info() {
clear
diff --git a/tools/pve/pyenv.sh b/tools/pve/pyenv.sh
index 21376de1..0222c544 100644
--- a/tools/pve/pyenv.sh
+++ b/tools/pve/pyenv.sh
@@ -3,7 +3,7 @@
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT
-# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# https://github.com/--full/ProxmoxVED/raw/main/LICENSE
set -e
YW=$(echo "\033[33m")
@@ -113,7 +113,7 @@ cat </srv/esphome/start.sh
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT
-# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# https://github.com/--full/ProxmoxVED/raw/main/LICENSE
source /srv/esphome/bin/activate
esphome dashboard /srv/esphome/
diff --git a/tools/pve/storage-share-helper.sh b/tools/pve/storage-share-helper.sh
index d9d77452..6d5841de 100644
--- a/tools/pve/storage-share-helper.sh
+++ b/tools/pve/storage-share-helper.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: GitHub Copilot
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
set -eEuo pipefail
diff --git a/tools/pve/update-apps.sh b/tools/pve/update-apps.sh
index b57e7e82..178308a0 100644
--- a/tools/pve/update-apps.sh
+++ b/tools/pve/update-apps.sh
@@ -4,7 +4,7 @@
# Author: BvdBerg01 | Co-Author: remz1337
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
-source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/refs/heads/main/misc/core.func)
+source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/refs/heads/main/misc/core.func)
# =============================================================================
# CONFIGURATION VARIABLES
diff --git a/tools/pve/usb-passthrough.sh b/tools/pve/usb-passthrough.sh
index c5205961..49adcba9 100644
--- a/tools/pve/usb-passthrough.sh
+++ b/tools/pve/usb-passthrough.sh
@@ -3,7 +3,7 @@
# Copyright (c) 2021-2026 tteck
# Author: tteck (tteckster)
# License: MIT
-# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# https://github.com/--full/ProxmoxVED/raw/main/LICENSE
echo -e "\e[1;33m This script will allow USB passthrough to a PRIVILEGED LXC Container ONLY\e[0m"
while true; do
diff --git a/vm/almalinux-10-vm.sh b/vm/almalinux-10-vm.sh
index 21b84a43..743524eb 100644
--- a/vm/almalinux-10-vm.sh
+++ b/vm/almalinux-10-vm.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Agent-Fennec
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}"
source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func")
diff --git a/vm/app-deployer-vm.sh b/vm/app-deployer-vm.sh
index 914e8763..ea436fea 100644
--- a/vm/app-deployer-vm.sh
+++ b/vm/app-deployer-vm.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# ==============================================================================
# APP DEPLOYER VM - Deploy LXC Applications Inside a Virtual Machine
diff --git a/vm/cachyos-vm.sh b/vm/cachyos-vm.sh
index fd53ca01..6a03a3ce 100644
--- a/vm/cachyos-vm.sh
+++ b/vm/cachyos-vm.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# ==============================================================================
# CachyOS VM - Creates a CachyOS Virtual Machine
diff --git a/vm/debian-vm-test-helper.sh b/vm/debian-vm-test-helper.sh
index d0ec45b4..b822e30f 100644
--- a/vm/debian-vm-test-helper.sh
+++ b/vm/debian-vm-test-helper.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}"
source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func")
@@ -378,11 +378,11 @@ DESCRIPTION=$(
- Discussions
+ Discussions
- Issues
+ Issues
EOF
@@ -404,4 +404,4 @@ if [ "$START_VM" == "yes" ]; then
fi
msg_ok "Completed successfully!\n"
-echo "More Info at https://github.com/community-scripts/ProxmoxVED/discussions/836"
+echo "More Info at https://github.com/--full/ProxmoxVED/discussions/836"
diff --git a/vm/debian-vm.sh b/vm/debian-vm.sh
index 4918643a..8ac1561f 100644
--- a/vm/debian-vm.sh
+++ b/vm/debian-vm.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}"
source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func")
@@ -378,4 +378,4 @@ if [ "$START_VM" == "yes" ]; then
fi
msg_ok "Completed successfully!\n"
-msg_custom "More Info at https://github.com/community-scripts/ProxmoxVED/discussions/836"
+msg_custom "More Info at https://github.com/--full/ProxmoxVED/discussions/836"
diff --git a/vm/docker-vm.sh b/vm/docker-vm.sh
index 194470a4..05c9d78d 100644
--- a/vm/docker-vm.sh
+++ b/vm/docker-vm.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: thost96 (thost96) | michelroegl-brunner | MickLesk
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
# ==============================================================================
# Docker VM - Creates a Docker-ready Virtual Machine
diff --git a/vm/k3s-vm.sh b/vm/k3s-vm.sh
index 35fe95b4..e2c7e96d 100644
--- a/vm/k3s-vm.sh
+++ b/vm/k3s-vm.sh
@@ -2,7 +2,7 @@
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
-# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
+# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}"
source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func")
@@ -577,4 +577,4 @@ if [ "$START_VM" == "yes" ]; then
fi
msg_ok "Completed successfully!\n"
-msg_custom "More Info at https://github.com/community-scripts/ProxmoxVED/discussions/836"
+msg_custom "More Info at https://github.com/--full/ProxmoxVED/discussions/836"