diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index b820af768..1cdec712f 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -40,27 +40,27 @@ Before contributing, please ensure that you have the following setup: - [Shell Format](https://marketplace.visualstudio.com/items?itemName=foxundermoon.shell-format) ### Important Notes -- Use [AppName.sh](https://github.com/community-scripts/ProxmoxVE/blob/main/.github/CONTRIBUTOR_GUIDE/ct/AppName.sh) and [AppName-install.sh](https://github.com/community-scripts/ProxmoxVE/blob/main/.github/CONTRIBUTOR_GUIDE/install/AppName-install.sh) as templates when creating new scripts. +- Use [AppName.sh](https://github.com/Dracentis/ProxmoxVe/blob/main/.github/CONTRIBUTOR_GUIDE/ct/AppName.sh) and [AppName-install.sh](https://github.com/Dracentis/ProxmoxVe/blob/main/.github/CONTRIBUTOR_GUIDE/install/AppName-install.sh) as templates when creating new scripts. --- # 🚀 The Application Script (ct/AppName.sh) -- You can find all coding standards, as well as the structure for this file [here](https://github.com/community-scripts/ProxmoxVE/blob/main/.github/CONTRIBUTOR_GUIDE/ct/AppName.md). +- You can find all coding standards, as well as the structure for this file [here](https://github.com/Dracentis/ProxmoxVe/blob/main/.github/CONTRIBUTOR_GUIDE/ct/AppName.md). - These scripts are responsible for container creation, setting the necessary variables and handling the update of the application once installed. --- # 🛠 The Installation Script (install/AppName-install.sh) -- You can find all coding standards, as well as the structure for this file [here](https://github.com/community-scripts/ProxmoxVE/blob/main/.github/CONTRIBUTOR_GUIDE/install/AppName-install.md). +- You can find all coding standards, as well as the structure for this file [here](https://github.com/Dracentis/ProxmoxVe/blob/main/.github/CONTRIBUTOR_GUIDE/install/AppName-install.md). - These scripts are responsible for the installation of the application. --- ## 🚀 Building Your Own Scripts -Start with the [template script](https://github.com/community-scripts/ProxmoxVE/blob/main/.github/CONTRIBUTOR_GUIDE/install/AppName-install.sh) +Start with the [template script](https://github.com/Dracentis/ProxmoxVe/blob/main/.github/CONTRIBUTOR_GUIDE/install/AppName-install.sh) --- @@ -80,7 +80,7 @@ git switch -c your-feature-branch ``` ### 4. Change paths in build.func install.func and AppName.sh -To be able to develop from your own branch you need to change `https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main` to `https://raw.githubusercontent.com/[USER]/[REPOSITORY]/refs/head/[BRANCH]`. You need to make this change atleast in misc/build.func misc/install.func and in your ct/AppName.sh. This change is only for testing. Before opening a Pull Request you should change this line change all this back to point to `https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main`. +To be able to develop from your own branch you need to change `https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main` to `https://raw.githubusercontent.com/[USER]/[REPOSITORY]/refs/head/[BRANCH]`. You need to make this change atleast in misc/build.func misc/install.func and in your ct/AppName.sh. This change is only for testing. Before opening a Pull Request you should change this line change all this back to point to `https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main`. ### 4. Commit changes (without build.func and install.func!) ```bash @@ -99,8 +99,8 @@ Open a Pull Request from your feature branch to the main repository branch. You ## 📚 Pages -- [CT Template: AppName.sh](https://github.com/community-scripts/ProxmoxVE/blob/main/.github/CONTRIBUTOR_GUIDE/ct/AppName.sh) -- [Install Template: AppName-install.sh](https://github.com/community-scripts/ProxmoxVE/blob/main/.github/CONTRIBUTOR_GUIDE/install/AppName-install.sh) -- [JSON Template: AppName.json](https://github.com/community-scripts/ProxmoxVE/blob/main/.github/CONTRIBUTOR_GUIDE/json/AppName.json) +- [CT Template: AppName.sh](https://github.com/Dracentis/ProxmoxVe/blob/main/.github/CONTRIBUTOR_GUIDE/ct/AppName.sh) +- [Install Template: AppName-install.sh](https://github.com/Dracentis/ProxmoxVe/blob/main/.github/CONTRIBUTOR_GUIDE/install/AppName-install.sh) +- [JSON Template: AppName.json](https://github.com/Dracentis/ProxmoxVe/blob/main/.github/CONTRIBUTOR_GUIDE/json/AppName.json) diff --git a/.github/CONTRIBUTOR_GUIDE/ct/AppName.md b/.github/CONTRIBUTOR_GUIDE/ct/AppName.md index 96d7add38..66758d167 100644 --- a/.github/CONTRIBUTOR_GUIDE/ct/AppName.md +++ b/.github/CONTRIBUTOR_GUIDE/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/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) ``` > [!CAUTION] @@ -67,7 +67,7 @@ Example: ```bash # Copyright (c) 2021-2025 community-scripts ORG # Author: [YourUserName] -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: [SOURCE_URL] ``` diff --git a/.github/CONTRIBUTOR_GUIDE/ct/AppName.sh b/.github/CONTRIBUTOR_GUIDE/ct/AppName.sh index bf28d113a..5d4141394 100644 --- a/.github/CONTRIBUTOR_GUIDE/ct/AppName.sh +++ b/.github/CONTRIBUTOR_GUIDE/ct/AppName.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2024 community-scripts ORG # Author: [YourUserName] -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: [SOURCE_URL] # App Default Values diff --git a/.github/CONTRIBUTOR_GUIDE/install/AppName-install.md b/.github/CONTRIBUTOR_GUIDE/install/AppName-install.md index 241cd99ac..324c48fac 100644 --- a/.github/CONTRIBUTOR_GUIDE/install/AppName-install.md +++ b/.github/CONTRIBUTOR_GUIDE/install/AppName-install.md @@ -59,7 +59,7 @@ Example: ```bash # Copyright (c) 2021-2025 community-scripts ORG # Author: [YourUserName] -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: [SOURCE_URL] ``` diff --git a/.github/DISCUSSION_TEMPLATE/request-script.yml b/.github/DISCUSSION_TEMPLATE/request-script.yml index aac84df60..6c77f1a9d 100644 --- a/.github/DISCUSSION_TEMPLATE/request-script.yml +++ b/.github/DISCUSSION_TEMPLATE/request-script.yml @@ -28,7 +28,7 @@ body: options: - label: "I have searched existing [scripts](https://community-scripts.github.io/Proxmox/scripts) and found no duplicates." required: true - - label: "I have searched existing [discussions](https://github.com/community-scripts/ProxmoxVE/discussions?discussions_q=) and found no duplicate requests." + - label: "I have searched existing [discussions](https://github.com/Dracentis/ProxmoxVe/discussions?discussions_q=) and found no duplicate requests." required: true - label: "This is not a game-related request." required: true diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 12bd44f84..808cf58ad 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -9,11 +9,11 @@ body: Thank you for taking the time to report an issue! Please provide as much detail as possible to help us address the problem efficiently. ## ⚠️ **IMPORTANT - READ FIRST** - - 🔍 **Search first:** Before submitting, check if the issue has already been reported or resolved in [closed issues](https://github.com/community-scripts/ProxmoxVE/issues?q=is%3Aissue+is%3Aclosed). If found, comment on that issue instead of creating a new one. - Alternatively, check the **[Discussions](https://github.com/community-scripts/ProxmoxVE/discussions)** under the *"Announcement"* or *"Guide"* categories for relevant information. + - 🔍 **Search first:** Before submitting, check if the issue has already been reported or resolved in [closed issues](https://github.com/Dracentis/ProxmoxVe/issues?q=is%3Aissue+is%3Aclosed). If found, comment on that issue instead of creating a new one. + Alternatively, check the **[Discussions](https://github.com/Dracentis/ProxmoxVe/discussions)** under the *"Announcement"* or *"Guide"* categories for relevant information. - 🛠️ **Supported environments only:** Ensure you are using a default Linux distribution. Custom setups may not be supported. - 🔎 If you encounter `[ERROR] in line 23: exit code *: while executing command "$@" > /dev/null 2>&1`, rerun the script with verbose mode before submitting the issue. - - 💡 For general questions, feature requests, or suggestions, use the [Discussions section](https://github.com/community-scripts/ProxmoxVE/discussions). + - 💡 For general questions, feature requests, or suggestions, use the [Discussions section](https://github.com/Dracentis/ProxmoxVe/discussions). - type: input id: guidelines @@ -35,7 +35,7 @@ body: id: script_command attributes: label: 📂 What was the exact command used to execute the script? - placeholder: "e.g., bash -c \"$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/ct/zigbee2mqtt.sh)\" or \"update\"" + placeholder: "e.g., bash -c \"$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/ct/zigbee2mqtt.sh)\" or \"update\"" validations: required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index e9a13bc4d..caf004072 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,10 +1,10 @@ blank_issues_enabled: false contact_links: - name: 🤔 Questions and Help - url: https://github.com/community-scripts/ProxmoxVE/discussions + url: https://github.com/Dracentis/ProxmoxVe/discussions about: For suggestions or questions, please use the Discussions section. - name: 🌟 Feature request - url: https://github.com/community-scripts/ProxmoxVE/discussions/new?category=request-script + url: https://github.com/Dracentis/ProxmoxVe/discussions/new?category=request-script about: For feature/script requests, please use the Discussions section. - name: 💻 Discord url: https://discord.gg/UHrpNWGwkH diff --git a/.github/ISSUE_TEMPLATE/frontend_report.yml b/.github/ISSUE_TEMPLATE/frontend_report.yml index 2a6f20af0..6eb59f2a6 100644 --- a/.github/ISSUE_TEMPLATE/frontend_report.yml +++ b/.github/ISSUE_TEMPLATE/frontend_report.yml @@ -9,7 +9,7 @@ body: **IMPORTANT:** Failure to comply with the following guidelines may result in immediate closure. - Prior to submitting, kindly search the closed issues to check if the problem you are reporting has already been addressed and resolved. If you come across a closed issue that pertains to your problem, please leave a comment on that issue instead of creating a new one. - If the problem is related to a bug in the website, kindly check for browser compatibility and ensure the issue occurs in multiple browsers before submitting. - - For suggestions, questions, or feature requests, please use the [Discussions section.](https://github.com/community-scripts/ProxmoxVE/discussions) + - For suggestions, questions, or feature requests, please use the [Discussions section.](https://github.com/Dracentis/ProxmoxVe/discussions) - type: input id: guidelines diff --git a/.github/workflows/backup/validate-scripts.yml.bak b/.github/workflows/backup/validate-scripts.yml.bak index 84b697063..2e60aaf34 100644 --- a/.github/workflows/backup/validate-scripts.yml.bak +++ b/.github/workflows/backup/validate-scripts.yml.bak @@ -54,7 +54,7 @@ jobs: run: | NON_COMPLIANT_FILES="" for FILE in ${{ steps.changed-files.outputs.files }}; do - if [[ "$FILE" == ct/* ]] && [[ $(sed -n '2p' "$FILE") != "source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)" ]]; then + if [[ "$FILE" == ct/* ]] && [[ $(sed -n '2p' "$FILE") != "source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func)" ]]; then NON_COMPLIANT_FILES="$NON_COMPLIANT_FILES $FILE" fi done @@ -134,7 +134,7 @@ jobs: run: | NON_COMPLIANT_FILES="" for FILE in ${{ steps.changed-files.outputs.files }}; do - if [[ "$(sed -n '5p' "$FILE")" != "# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE" ]]; then + if [[ "$(sed -n '5p' "$FILE")" != "# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE" ]]; then NON_COMPLIANT_FILES="$NON_COMPLIANT_FILES $FILE" fi done diff --git a/CHANGELOG.md b/CHANGELOG.md index d4eb65f81..270a39c84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@
- +

Changelog

@@ -23,19 +23,19 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New Script: Prometheus Proxmox VE Exporter [@andygrunwald](https://github.com/andygrunwald) ([#1805](https://github.com/community-scripts/ProxmoxVE/pull/1805)) -- New Script: Clean Orphaned LVM [@MickLesk](https://github.com/MickLesk) ([#1838](https://github.com/community-scripts/ProxmoxVE/pull/1838)) +- New Script: Prometheus Proxmox VE Exporter [@andygrunwald](https://github.com/andygrunwald) ([#1805](https://github.com/Dracentis/ProxmoxVe/pull/1805)) +- New Script: Clean Orphaned LVM [@MickLesk](https://github.com/MickLesk) ([#1838](https://github.com/Dracentis/ProxmoxVe/pull/1838)) ### 🌐 Website -- Patch http Url to https in build.func and /data/page.tsx [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1849](https://github.com/community-scripts/ProxmoxVE/pull/1849)) -- [Frontend] Add /data to show API results [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1841](https://github.com/community-scripts/ProxmoxVE/pull/1841)) -- Update clean-orphaned-lvm.json [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1843](https://github.com/community-scripts/ProxmoxVE/pull/1843)) +- Patch http Url to https in build.func and /data/page.tsx [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1849](https://github.com/Dracentis/ProxmoxVe/pull/1849)) +- [Frontend] Add /data to show API results [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1841](https://github.com/Dracentis/ProxmoxVe/pull/1841)) +- Update clean-orphaned-lvm.json [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1843](https://github.com/Dracentis/ProxmoxVe/pull/1843)) ### 🧰 Maintenance -- Update build.func [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1851](https://github.com/community-scripts/ProxmoxVE/pull/1851)) -- [Diagnostic] Introduced optional lxc install diagnostics via API call [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1801](https://github.com/community-scripts/ProxmoxVE/pull/1801)) +- Update build.func [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1851](https://github.com/Dracentis/ProxmoxVe/pull/1851)) +- [Diagnostic] Introduced optional lxc install diagnostics via API call [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1801](https://github.com/Dracentis/ProxmoxVe/pull/1801)) ## 2025-01-28 @@ -43,28 +43,28 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- Breaking Change: Homarr v1 (Read Guide) [@MickLesk](https://github.com/MickLesk) ([#1825](https://github.com/community-scripts/ProxmoxVE/pull/1825)) -- Update PingVin: Fix problem with update und switch to new method of getting files. [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1819](https://github.com/community-scripts/ProxmoxVE/pull/1819)) +- Breaking Change: Homarr v1 (Read Guide) [@MickLesk](https://github.com/MickLesk) ([#1825](https://github.com/Dracentis/ProxmoxVe/pull/1825)) +- Update PingVin: Fix problem with update und switch to new method of getting files. [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1819](https://github.com/Dracentis/ProxmoxVe/pull/1819)) ### ✨ New Scripts -- New script: Monica LXC [@bvdberg01](https://github.com/bvdberg01) ([#1813](https://github.com/community-scripts/ProxmoxVE/pull/1813)) -- New Script: NodeBB [@MickLesk](https://github.com/MickLesk) ([#1811](https://github.com/community-scripts/ProxmoxVE/pull/1811)) -- New Script: Pocket ID [@Snarkenfaugister](https://github.com/Snarkenfaugister) ([#1779](https://github.com/community-scripts/ProxmoxVE/pull/1779)) +- New script: Monica LXC [@bvdberg01](https://github.com/bvdberg01) ([#1813](https://github.com/Dracentis/ProxmoxVe/pull/1813)) +- New Script: NodeBB [@MickLesk](https://github.com/MickLesk) ([#1811](https://github.com/Dracentis/ProxmoxVe/pull/1811)) +- New Script: Pocket ID [@Snarkenfaugister](https://github.com/Snarkenfaugister) ([#1779](https://github.com/Dracentis/ProxmoxVe/pull/1779)) ### 🚀 Updated Scripts -- Update all Alpine LXC's to 3.21 (Docker, Grafana, Nextcloud, Vaultwarden, Zigbee2Mqtt, Alpine) [@MickLesk](https://github.com/MickLesk) ([#1803](https://github.com/community-scripts/ProxmoxVE/pull/1803)) -- [Standardization] Fix Spelling for "Setup Python3" [@MickLesk](https://github.com/MickLesk) ([#1810](https://github.com/community-scripts/ProxmoxVE/pull/1810)) +- Update all Alpine LXC's to 3.21 (Docker, Grafana, Nextcloud, Vaultwarden, Zigbee2Mqtt, Alpine) [@MickLesk](https://github.com/MickLesk) ([#1803](https://github.com/Dracentis/ProxmoxVe/pull/1803)) +- [Standardization] Fix Spelling for "Setup Python3" [@MickLesk](https://github.com/MickLesk) ([#1810](https://github.com/Dracentis/ProxmoxVe/pull/1810)) ### 🌐 Website -- Filter out duplicate scripts in LatestScripts component and sort by creation date [@BramSuurdje](https://github.com/BramSuurdje) ([#1828](https://github.com/community-scripts/ProxmoxVE/pull/1828)) +- Filter out duplicate scripts in LatestScripts component and sort by creation date [@BramSuurdje](https://github.com/BramSuurdje) ([#1828](https://github.com/Dracentis/ProxmoxVe/pull/1828)) ### 🧰 Maintenance -- [core]: Remove Figlet | Get Headers by Repo & Store Local [@MickLesk](https://github.com/MickLesk) ([#1802](https://github.com/community-scripts/ProxmoxVE/pull/1802)) -- [docs] Update AppName.md: Make it clear where to change the URLs [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1809](https://github.com/community-scripts/ProxmoxVE/pull/1809)) +- [core]: Remove Figlet | Get Headers by Repo & Store Local [@MickLesk](https://github.com/MickLesk) ([#1802](https://github.com/Dracentis/ProxmoxVe/pull/1802)) +- [docs] Update AppName.md: Make it clear where to change the URLs [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1809](https://github.com/Dracentis/ProxmoxVe/pull/1809)) ## 2025-01-27 @@ -72,18 +72,18 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New Script: Arch Linux VM [@MickLesk](https://github.com/MickLesk) ([#1780](https://github.com/community-scripts/ProxmoxVE/pull/1780)) +- New Script: Arch Linux VM [@MickLesk](https://github.com/MickLesk) ([#1780](https://github.com/Dracentis/ProxmoxVe/pull/1780)) ### 🚀 Updated Scripts -- Increase alpine-vaultwarden default var_disk size [@nayzm](https://github.com/nayzm) ([#1788](https://github.com/community-scripts/ProxmoxVE/pull/1788)) -- Added change of the mobile GUI to disable nag request [@GarryG](https://github.com/GarryG) ([#1785](https://github.com/community-scripts/ProxmoxVE/pull/1785)) +- Increase alpine-vaultwarden default var_disk size [@nayzm](https://github.com/nayzm) ([#1788](https://github.com/Dracentis/ProxmoxVe/pull/1788)) +- Added change of the mobile GUI to disable nag request [@GarryG](https://github.com/GarryG) ([#1785](https://github.com/Dracentis/ProxmoxVe/pull/1785)) ### 🌐 Website -- Update frontend alpine-vaultwarden hdd size and OS version [@nayzm](https://github.com/nayzm) ([#1789](https://github.com/community-scripts/ProxmoxVE/pull/1789)) -- Website: Add Description for Metadata Categories [@MickLesk](https://github.com/MickLesk) ([#1783](https://github.com/community-scripts/ProxmoxVE/pull/1783)) -- [Fix] Double "VM" on website (Arch Linux) [@lasharor](https://github.com/lasharor) ([#1782](https://github.com/community-scripts/ProxmoxVE/pull/1782)) +- Update frontend alpine-vaultwarden hdd size and OS version [@nayzm](https://github.com/nayzm) ([#1789](https://github.com/Dracentis/ProxmoxVe/pull/1789)) +- Website: Add Description for Metadata Categories [@MickLesk](https://github.com/MickLesk) ([#1783](https://github.com/Dracentis/ProxmoxVe/pull/1783)) +- [Fix] Double "VM" on website (Arch Linux) [@lasharor](https://github.com/lasharor) ([#1782](https://github.com/Dracentis/ProxmoxVe/pull/1782)) ## 2025-01-26 @@ -91,15 +91,15 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Fix jellyfin update command [@jcisio](https://github.com/jcisio) ([#1771](https://github.com/community-scripts/ProxmoxVE/pull/1771)) -- openHAB - Use https and include doc url [@moodyblue](https://github.com/moodyblue) ([#1766](https://github.com/community-scripts/ProxmoxVE/pull/1766)) -- Jellyfin: Fix default logging level [@tremor021](https://github.com/tremor021) ([#1768](https://github.com/community-scripts/ProxmoxVE/pull/1768)) -- Calibre-Web: added installation of calibre binaries [@tremor021](https://github.com/tremor021) ([#1763](https://github.com/community-scripts/ProxmoxVE/pull/1763)) -- Added environment variable to accept EULA for SQLServer2022 [@tremor021](https://github.com/tremor021) ([#1755](https://github.com/community-scripts/ProxmoxVE/pull/1755)) +- Fix jellyfin update command [@jcisio](https://github.com/jcisio) ([#1771](https://github.com/Dracentis/ProxmoxVe/pull/1771)) +- openHAB - Use https and include doc url [@moodyblue](https://github.com/moodyblue) ([#1766](https://github.com/Dracentis/ProxmoxVe/pull/1766)) +- Jellyfin: Fix default logging level [@tremor021](https://github.com/tremor021) ([#1768](https://github.com/Dracentis/ProxmoxVe/pull/1768)) +- Calibre-Web: added installation of calibre binaries [@tremor021](https://github.com/tremor021) ([#1763](https://github.com/Dracentis/ProxmoxVe/pull/1763)) +- Added environment variable to accept EULA for SQLServer2022 [@tremor021](https://github.com/tremor021) ([#1755](https://github.com/Dracentis/ProxmoxVe/pull/1755)) ### 🌐 Website -- The Lounge: Fix the command to create new users [@tremor021](https://github.com/tremor021) ([#1762](https://github.com/community-scripts/ProxmoxVE/pull/1762)) +- The Lounge: Fix the command to create new users [@tremor021](https://github.com/tremor021) ([#1762](https://github.com/Dracentis/ProxmoxVe/pull/1762)) ## 2025-01-24 @@ -107,18 +107,18 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New Script: Ubuntu 24.10 VM [@MickLesk](https://github.com/MickLesk) ([#1711](https://github.com/community-scripts/ProxmoxVE/pull/1711)) +- New Script: Ubuntu 24.10 VM [@MickLesk](https://github.com/MickLesk) ([#1711](https://github.com/Dracentis/ProxmoxVe/pull/1711)) ### 🚀 Updated Scripts -- openHAB - Update to Zulu21 [@moodyblue](https://github.com/moodyblue) ([#1734](https://github.com/community-scripts/ProxmoxVE/pull/1734)) -- Feature: Filebrowser Script > Redesign | Update Logic | Remove Logic [@MickLesk](https://github.com/MickLesk) ([#1716](https://github.com/community-scripts/ProxmoxVE/pull/1716)) -- Feature: Ubuntu 22.04 VM > Redesign | Optional HDD-Size Prompt [@MickLesk](https://github.com/MickLesk) ([#1712](https://github.com/community-scripts/ProxmoxVE/pull/1712)) -- Feature: Ubuntu 24.04 VM > Redesign | Optional HDD-Size Prompt | cifs support [@MickLesk](https://github.com/MickLesk) ([#1714](https://github.com/community-scripts/ProxmoxVE/pull/1714)) +- openHAB - Update to Zulu21 [@moodyblue](https://github.com/moodyblue) ([#1734](https://github.com/Dracentis/ProxmoxVe/pull/1734)) +- Feature: Filebrowser Script > Redesign | Update Logic | Remove Logic [@MickLesk](https://github.com/MickLesk) ([#1716](https://github.com/Dracentis/ProxmoxVe/pull/1716)) +- Feature: Ubuntu 22.04 VM > Redesign | Optional HDD-Size Prompt [@MickLesk](https://github.com/MickLesk) ([#1712](https://github.com/Dracentis/ProxmoxVe/pull/1712)) +- Feature: Ubuntu 24.04 VM > Redesign | Optional HDD-Size Prompt | cifs support [@MickLesk](https://github.com/MickLesk) ([#1714](https://github.com/Dracentis/ProxmoxVe/pull/1714)) ### 🧰 Maintenance -- [Core] Better Creation of App Headers for next feature [@MickLesk](https://github.com/MickLesk) ([#1719](https://github.com/community-scripts/ProxmoxVE/pull/1719)) +- [Core] Better Creation of App Headers for next feature [@MickLesk](https://github.com/MickLesk) ([#1719](https://github.com/Dracentis/ProxmoxVe/pull/1719)) ## 2025-01-23 @@ -126,16 +126,16 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Feature: Add Debian Disk Size / Redesign / Increase Disk [@MickLesk](https://github.com/MickLesk) ([#1695](https://github.com/community-scripts/ProxmoxVE/pull/1695)) -- Fix: Paperless Service Timings & Optimization: Ghostscript Installation [@MickLesk](https://github.com/MickLesk) ([#1688](https://github.com/community-scripts/ProxmoxVE/pull/1688)) +- Feature: Add Debian Disk Size / Redesign / Increase Disk [@MickLesk](https://github.com/MickLesk) ([#1695](https://github.com/Dracentis/ProxmoxVe/pull/1695)) +- Fix: Paperless Service Timings & Optimization: Ghostscript Installation [@MickLesk](https://github.com/MickLesk) ([#1688](https://github.com/Dracentis/ProxmoxVe/pull/1688)) ### 🌐 Website -- Refactor ScriptInfoBlocks and siteConfig to properly show the most populair scripts [@BramSuurdje](https://github.com/BramSuurdje) ([#1697](https://github.com/community-scripts/ProxmoxVE/pull/1697)) +- Refactor ScriptInfoBlocks and siteConfig to properly show the most populair scripts [@BramSuurdje](https://github.com/BramSuurdje) ([#1697](https://github.com/Dracentis/ProxmoxVe/pull/1697)) ### 🧰 Maintenance -- Update build.func: Ubuntu advanced settings version [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1701](https://github.com/community-scripts/ProxmoxVE/pull/1701)) +- Update build.func: Ubuntu advanced settings version [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1701](https://github.com/Dracentis/ProxmoxVe/pull/1701)) ## 2025-01-22 @@ -143,15 +143,15 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Tweak: LubeLogger Script Upcoming Changes 1.4.3 [@JcMinarro](https://github.com/JcMinarro) ([#1656](https://github.com/community-scripts/ProxmoxVE/pull/1656)) -- Fix: SQL Server 2022 Install [@MickLesk](https://github.com/MickLesk) ([#1669](https://github.com/community-scripts/ProxmoxVE/pull/1669)) +- Tweak: LubeLogger Script Upcoming Changes 1.4.3 [@JcMinarro](https://github.com/JcMinarro) ([#1656](https://github.com/Dracentis/ProxmoxVe/pull/1656)) +- Fix: SQL Server 2022 Install [@MickLesk](https://github.com/MickLesk) ([#1669](https://github.com/Dracentis/ProxmoxVe/pull/1669)) ### 🌐 Website -- Refactor Sidebar component to display unique scripts count [@BramSuurdje](https://github.com/BramSuurdje) ([#1681](https://github.com/community-scripts/ProxmoxVE/pull/1681)) -- Refactor various components and configuration for mobile responsiveness. [@BramSuurdje](https://github.com/BramSuurdje) ([#1679](https://github.com/community-scripts/ProxmoxVE/pull/1679)) -- Add Docker-VM to Containers & Docker Category [@thost96](https://github.com/thost96) ([#1667](https://github.com/community-scripts/ProxmoxVE/pull/1667)) -- Moving SQL Server 2022 to database category [@CamronBorealis](https://github.com/CamronBorealis) ([#1659](https://github.com/community-scripts/ProxmoxVE/pull/1659)) +- Refactor Sidebar component to display unique scripts count [@BramSuurdje](https://github.com/BramSuurdje) ([#1681](https://github.com/Dracentis/ProxmoxVe/pull/1681)) +- Refactor various components and configuration for mobile responsiveness. [@BramSuurdje](https://github.com/BramSuurdje) ([#1679](https://github.com/Dracentis/ProxmoxVe/pull/1679)) +- Add Docker-VM to Containers & Docker Category [@thost96](https://github.com/thost96) ([#1667](https://github.com/Dracentis/ProxmoxVe/pull/1667)) +- Moving SQL Server 2022 to database category [@CamronBorealis](https://github.com/CamronBorealis) ([#1659](https://github.com/Dracentis/ProxmoxVe/pull/1659)) ## 2025-01-21 @@ -159,26 +159,26 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- Add new Script: LXC Delete (Proxmox) [@MickLesk](https://github.com/MickLesk) ([#1636](https://github.com/community-scripts/ProxmoxVE/pull/1636)) -- New script: ProjectSend [@bvdberg01](https://github.com/bvdberg01) ([#1616](https://github.com/community-scripts/ProxmoxVE/pull/1616)) -- New Script: Beszel [@Sinofage](https://github.com/Sinofage) ([#1619](https://github.com/community-scripts/ProxmoxVE/pull/1619)) -- New Script: Docker VM [@thost96](https://github.com/thost96) ([#1608](https://github.com/community-scripts/ProxmoxVE/pull/1608)) -- New script: SQL Server 2022 [@kris701](https://github.com/kris701) ([#1482](https://github.com/community-scripts/ProxmoxVE/pull/1482)) +- Add new Script: LXC Delete (Proxmox) [@MickLesk](https://github.com/MickLesk) ([#1636](https://github.com/Dracentis/ProxmoxVe/pull/1636)) +- New script: ProjectSend [@bvdberg01](https://github.com/bvdberg01) ([#1616](https://github.com/Dracentis/ProxmoxVe/pull/1616)) +- New Script: Beszel [@Sinofage](https://github.com/Sinofage) ([#1619](https://github.com/Dracentis/ProxmoxVe/pull/1619)) +- New Script: Docker VM [@thost96](https://github.com/thost96) ([#1608](https://github.com/Dracentis/ProxmoxVe/pull/1608)) +- New script: SQL Server 2022 [@kris701](https://github.com/kris701) ([#1482](https://github.com/Dracentis/ProxmoxVe/pull/1482)) ### 🚀 Updated Scripts -- Fix: Teddycloud Script (install, clean up & update) [@MickLesk](https://github.com/MickLesk) ([#1652](https://github.com/community-scripts/ProxmoxVE/pull/1652)) -- Fix: Docker VM deprecated gpg [@MickLesk](https://github.com/MickLesk) ([#1649](https://github.com/community-scripts/ProxmoxVE/pull/1649)) -- ActualBudget: Fix Update-Function, Fix Wget Crawling, Add Versionscheck [@MickLesk](https://github.com/MickLesk) ([#1643](https://github.com/community-scripts/ProxmoxVE/pull/1643)) -- Fix Photoprism missing folder & environments [@MickLesk](https://github.com/MickLesk) ([#1639](https://github.com/community-scripts/ProxmoxVE/pull/1639)) -- Update MOTD: Add Dynamic IP with profile.d by @JcMinarro [@MickLesk](https://github.com/MickLesk) ([#1633](https://github.com/community-scripts/ProxmoxVE/pull/1633)) -- PBS.sh: Fix wrong URL after Setup [@thost96](https://github.com/thost96) ([#1629](https://github.com/community-scripts/ProxmoxVE/pull/1629)) +- Fix: Teddycloud Script (install, clean up & update) [@MickLesk](https://github.com/MickLesk) ([#1652](https://github.com/Dracentis/ProxmoxVe/pull/1652)) +- Fix: Docker VM deprecated gpg [@MickLesk](https://github.com/MickLesk) ([#1649](https://github.com/Dracentis/ProxmoxVe/pull/1649)) +- ActualBudget: Fix Update-Function, Fix Wget Crawling, Add Versionscheck [@MickLesk](https://github.com/MickLesk) ([#1643](https://github.com/Dracentis/ProxmoxVe/pull/1643)) +- Fix Photoprism missing folder & environments [@MickLesk](https://github.com/MickLesk) ([#1639](https://github.com/Dracentis/ProxmoxVe/pull/1639)) +- Update MOTD: Add Dynamic IP with profile.d by @JcMinarro [@MickLesk](https://github.com/MickLesk) ([#1633](https://github.com/Dracentis/ProxmoxVe/pull/1633)) +- PBS.sh: Fix wrong URL after Setup [@thost96](https://github.com/thost96) ([#1629](https://github.com/Dracentis/ProxmoxVe/pull/1629)) ### 🌐 Website -- Bump vite from 6.0.1 to 6.0.11 in /frontend [@dependabot[bot]](https://github.com/dependabot[bot]) ([#1653](https://github.com/community-scripts/ProxmoxVE/pull/1653)) -- Update glpi.json [@opastorello](https://github.com/opastorello) ([#1641](https://github.com/community-scripts/ProxmoxVE/pull/1641)) -- Fix Docker-VM name on website [@Sinofage](https://github.com/Sinofage) ([#1630](https://github.com/community-scripts/ProxmoxVE/pull/1630)) +- Bump vite from 6.0.1 to 6.0.11 in /frontend [@dependabot[bot]](https://github.com/dependabot[bot]) ([#1653](https://github.com/Dracentis/ProxmoxVe/pull/1653)) +- Update glpi.json [@opastorello](https://github.com/opastorello) ([#1641](https://github.com/Dracentis/ProxmoxVe/pull/1641)) +- Fix Docker-VM name on website [@Sinofage](https://github.com/Sinofage) ([#1630](https://github.com/Dracentis/ProxmoxVe/pull/1630)) ## 2025-01-20 @@ -186,26 +186,26 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New Script: UrBackup Server [@kris701](https://github.com/kris701) ([#1569](https://github.com/community-scripts/ProxmoxVE/pull/1569)) -- New Script: Proxmox Mail Gateway Post Installer [@thost96](https://github.com/thost96) ([#1559](https://github.com/community-scripts/ProxmoxVE/pull/1559)) +- New Script: UrBackup Server [@kris701](https://github.com/kris701) ([#1569](https://github.com/Dracentis/ProxmoxVe/pull/1569)) +- New Script: Proxmox Mail Gateway Post Installer [@thost96](https://github.com/thost96) ([#1559](https://github.com/Dracentis/ProxmoxVe/pull/1559)) ### 🚀 Updated Scripts -- Update Kimai Dependency: Use PHP 8.3 [@MickLesk](https://github.com/MickLesk) ([#1609](https://github.com/community-scripts/ProxmoxVE/pull/1609)) -- Feature: Add xCaddy for external Modules on Caddy-LXC [@MickLesk](https://github.com/MickLesk) ([#1613](https://github.com/community-scripts/ProxmoxVE/pull/1613)) -- Fix Pocketbase URL after install [@MickLesk](https://github.com/MickLesk) ([#1597](https://github.com/community-scripts/ProxmoxVE/pull/1597)) -- Unifi.sh fix wrong URL after Install [@thost96](https://github.com/thost96) ([#1601](https://github.com/community-scripts/ProxmoxVE/pull/1601)) +- Update Kimai Dependency: Use PHP 8.3 [@MickLesk](https://github.com/MickLesk) ([#1609](https://github.com/Dracentis/ProxmoxVe/pull/1609)) +- Feature: Add xCaddy for external Modules on Caddy-LXC [@MickLesk](https://github.com/MickLesk) ([#1613](https://github.com/Dracentis/ProxmoxVe/pull/1613)) +- Fix Pocketbase URL after install [@MickLesk](https://github.com/MickLesk) ([#1597](https://github.com/Dracentis/ProxmoxVe/pull/1597)) +- Unifi.sh fix wrong URL after Install [@thost96](https://github.com/thost96) ([#1601](https://github.com/Dracentis/ProxmoxVe/pull/1601)) ### 🌐 Website -- Update Website | Add new Categories [@MickLesk](https://github.com/MickLesk) ([#1606](https://github.com/community-scripts/ProxmoxVE/pull/1606)) -- Grafana: Mark container as updateable [@andygrunwald](https://github.com/andygrunwald) ([#1603](https://github.com/community-scripts/ProxmoxVE/pull/1603)) +- Update Website | Add new Categories [@MickLesk](https://github.com/MickLesk) ([#1606](https://github.com/Dracentis/ProxmoxVe/pull/1606)) +- Grafana: Mark container as updateable [@andygrunwald](https://github.com/andygrunwald) ([#1603](https://github.com/Dracentis/ProxmoxVe/pull/1603)) ### 🧰 Maintenance -- [core] Update build.func: Add defaults to Advanced mode [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1548](https://github.com/community-scripts/ProxmoxVE/pull/1548)) -- Update build.func: Fix Advanced Tags (Remove all if empty / overwrite if default cleared) [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1612](https://github.com/community-scripts/ProxmoxVE/pull/1612)) -- Add new Check for LXC MaxKeys by @cricalix [@MickLesk](https://github.com/MickLesk) ([#1602](https://github.com/community-scripts/ProxmoxVE/pull/1602)) +- [core] Update build.func: Add defaults to Advanced mode [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1548](https://github.com/Dracentis/ProxmoxVe/pull/1548)) +- Update build.func: Fix Advanced Tags (Remove all if empty / overwrite if default cleared) [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1612](https://github.com/Dracentis/ProxmoxVe/pull/1612)) +- Add new Check for LXC MaxKeys by @cricalix [@MickLesk](https://github.com/MickLesk) ([#1602](https://github.com/Dracentis/ProxmoxVe/pull/1602)) ## 2025-01-19 @@ -213,7 +213,7 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Update Opengist.sh: Fix broken backup function [@bvdberg01](https://github.com/bvdberg01) ([#1572](https://github.com/community-scripts/ProxmoxVE/pull/1572)) +- Update Opengist.sh: Fix broken backup function [@bvdberg01](https://github.com/bvdberg01) ([#1572](https://github.com/Dracentis/ProxmoxVe/pull/1572)) ## 2025-01-18 @@ -221,16 +221,16 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- **READ GUIDE FIRST** breaking change: Homeassistant-Core upgrade os and python3 [@MickLesk](https://github.com/MickLesk) ([#1550](https://github.com/community-scripts/ProxmoxVE/pull/1550)) -- Update Openwrt: Delete lines that do WAN input and forward accept [@chackl1990](https://github.com/chackl1990) ([#1540](https://github.com/community-scripts/ProxmoxVE/pull/1540)) +- **READ GUIDE FIRST** breaking change: Homeassistant-Core upgrade os and python3 [@MickLesk](https://github.com/MickLesk) ([#1550](https://github.com/Dracentis/ProxmoxVe/pull/1550)) +- Update Openwrt: Delete lines that do WAN input and forward accept [@chackl1990](https://github.com/chackl1990) ([#1540](https://github.com/Dracentis/ProxmoxVe/pull/1540)) ### 🚀 Updated Scripts -- added cifs support in ubuntu2404-vm.sh [@plonxyz](https://github.com/plonxyz) ([#1461](https://github.com/community-scripts/ProxmoxVE/pull/1461)) -- Fix linkwarden update [@burgerga](https://github.com/burgerga) ([#1565](https://github.com/community-scripts/ProxmoxVE/pull/1565)) -- [jellyseerr] Update nodejs if not up-to-date [@makstech](https://github.com/makstech) ([#1563](https://github.com/community-scripts/ProxmoxVE/pull/1563)) -- Update VM Tags [@oOStroudyOo](https://github.com/oOStroudyOo) ([#1562](https://github.com/community-scripts/ProxmoxVE/pull/1562)) -- Update apt-cacher-ng.sh: Typo/Missing $ [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1545](https://github.com/community-scripts/ProxmoxVE/pull/1545)) +- added cifs support in ubuntu2404-vm.sh [@plonxyz](https://github.com/plonxyz) ([#1461](https://github.com/Dracentis/ProxmoxVe/pull/1461)) +- Fix linkwarden update [@burgerga](https://github.com/burgerga) ([#1565](https://github.com/Dracentis/ProxmoxVe/pull/1565)) +- [jellyseerr] Update nodejs if not up-to-date [@makstech](https://github.com/makstech) ([#1563](https://github.com/Dracentis/ProxmoxVe/pull/1563)) +- Update VM Tags [@oOStroudyOo](https://github.com/oOStroudyOo) ([#1562](https://github.com/Dracentis/ProxmoxVe/pull/1562)) +- Update apt-cacher-ng.sh: Typo/Missing $ [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1545](https://github.com/Dracentis/ProxmoxVe/pull/1545)) ## 2025-01-16 @@ -238,22 +238,22 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- Update jellyseerr-install.sh to use Node 22 as required by latest Jellyseerr version [@pedrovieira](https://github.com/pedrovieira) ([#1535](https://github.com/community-scripts/ProxmoxVE/pull/1535)) +- Update jellyseerr-install.sh to use Node 22 as required by latest Jellyseerr version [@pedrovieira](https://github.com/pedrovieira) ([#1535](https://github.com/Dracentis/ProxmoxVe/pull/1535)) ### ✨ New Scripts -- New script: Dotnet ASP.NET Web Server [@kris701](https://github.com/kris701) ([#1501](https://github.com/community-scripts/ProxmoxVE/pull/1501)) -- New script: phpIPAM [@bvdberg01](https://github.com/bvdberg01) ([#1503](https://github.com/community-scripts/ProxmoxVE/pull/1503)) +- New script: Dotnet ASP.NET Web Server [@kris701](https://github.com/kris701) ([#1501](https://github.com/Dracentis/ProxmoxVe/pull/1501)) +- New script: phpIPAM [@bvdberg01](https://github.com/bvdberg01) ([#1503](https://github.com/Dracentis/ProxmoxVe/pull/1503)) ### 🌐 Website -- Add Mobile check for empty icon-url on website [@MickLesk](https://github.com/MickLesk) ([#1532](https://github.com/community-scripts/ProxmoxVE/pull/1532)) +- Add Mobile check for empty icon-url on website [@MickLesk](https://github.com/MickLesk) ([#1532](https://github.com/Dracentis/ProxmoxVe/pull/1532)) ### 🧰 Maintenance -- [Workflow]Update autolabeler-config.json [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1525](https://github.com/community-scripts/ProxmoxVE/pull/1525)) -- [core]Update update_json_date.yml [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1526](https://github.com/community-scripts/ProxmoxVE/pull/1526)) -- [core] Recreate Update JSON Workflow [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1523](https://github.com/community-scripts/ProxmoxVE/pull/1523)) +- [Workflow]Update autolabeler-config.json [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1525](https://github.com/Dracentis/ProxmoxVe/pull/1525)) +- [core]Update update_json_date.yml [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1526](https://github.com/Dracentis/ProxmoxVe/pull/1526)) +- [core] Recreate Update JSON Workflow [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1523](https://github.com/Dracentis/ProxmoxVe/pull/1523)) ## 2025-01-15 @@ -261,11 +261,11 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Fix: Add FFMPEG for OpenWebUI [@MickLesk](https://github.com/MickLesk) ([#1497](https://github.com/community-scripts/ProxmoxVE/pull/1497)) +- Fix: Add FFMPEG for OpenWebUI [@MickLesk](https://github.com/MickLesk) ([#1497](https://github.com/Dracentis/ProxmoxVe/pull/1497)) ### 🧰 Maintenance -- [core] build.func&install.func: Fix ssh keynot added error [@dsiebel](https://github.com/dsiebel) ([#1502](https://github.com/community-scripts/ProxmoxVE/pull/1502)) +- [core] build.func&install.func: Fix ssh keynot added error [@dsiebel](https://github.com/dsiebel) ([#1502](https://github.com/Dracentis/ProxmoxVe/pull/1502)) ## 2025-01-14 @@ -273,26 +273,26 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- Update tianji-install.sh: Add OPENAI_API_KEY to .env [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1480](https://github.com/community-scripts/ProxmoxVE/pull/1480)) +- Update tianji-install.sh: Add OPENAI_API_KEY to .env [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1480](https://github.com/Dracentis/ProxmoxVe/pull/1480)) ### ✨ New Scripts -- New Script: Wordpress [@MickLesk](https://github.com/MickLesk) ([#1485](https://github.com/community-scripts/ProxmoxVE/pull/1485)) -- New Script: Opengist [@jd-apprentice](https://github.com/jd-apprentice) ([#1429](https://github.com/community-scripts/ProxmoxVE/pull/1429)) +- New Script: Wordpress [@MickLesk](https://github.com/MickLesk) ([#1485](https://github.com/Dracentis/ProxmoxVe/pull/1485)) +- New Script: Opengist [@jd-apprentice](https://github.com/jd-apprentice) ([#1429](https://github.com/Dracentis/ProxmoxVe/pull/1429)) ### 🚀 Updated Scripts -- Update lazylibrarian-install.sh: Add pypdf libary [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1467](https://github.com/community-scripts/ProxmoxVE/pull/1467)) -- Update opengist-install.sh: Add git as dependencie [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1471](https://github.com/community-scripts/ProxmoxVE/pull/1471)) +- Update lazylibrarian-install.sh: Add pypdf libary [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1467](https://github.com/Dracentis/ProxmoxVe/pull/1467)) +- Update opengist-install.sh: Add git as dependencie [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1471](https://github.com/Dracentis/ProxmoxVe/pull/1471)) ### 🌐 Website -- [website] Update footer text [@rajatdiptabiswas](https://github.com/rajatdiptabiswas) ([#1466](https://github.com/community-scripts/ProxmoxVE/pull/1466)) +- [website] Update footer text [@rajatdiptabiswas](https://github.com/rajatdiptabiswas) ([#1466](https://github.com/Dracentis/ProxmoxVe/pull/1466)) ### 🧰 Maintenance -- Hotfix build.func: Error when tags are empty [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1492](https://github.com/community-scripts/ProxmoxVE/pull/1492)) -- [core] Update build.func: Fix bug with advanced tags [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1473](https://github.com/community-scripts/ProxmoxVE/pull/1473)) +- Hotfix build.func: Error when tags are empty [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1492](https://github.com/Dracentis/ProxmoxVe/pull/1492)) +- [core] Update build.func: Fix bug with advanced tags [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1473](https://github.com/Dracentis/ProxmoxVe/pull/1473)) ## 2025-01-13 @@ -300,24 +300,24 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- Update Hoarder: Improvement .env location (see PR comment for little migration) [@MahrWe](https://github.com/MahrWe) ([#1325](https://github.com/community-scripts/ProxmoxVE/pull/1325)) +- Update Hoarder: Improvement .env location (see PR comment for little migration) [@MahrWe](https://github.com/MahrWe) ([#1325](https://github.com/Dracentis/ProxmoxVe/pull/1325)) ### 🚀 Updated Scripts -- Fix: tandoor.sh: Call version.py to write current version [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1454](https://github.com/community-scripts/ProxmoxVE/pull/1454)) -- Fix inexistent folder on actualbudget update script [@dosten](https://github.com/dosten) ([#1444](https://github.com/community-scripts/ProxmoxVE/pull/1444)) +- Fix: tandoor.sh: Call version.py to write current version [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1454](https://github.com/Dracentis/ProxmoxVe/pull/1454)) +- Fix inexistent folder on actualbudget update script [@dosten](https://github.com/dosten) ([#1444](https://github.com/Dracentis/ProxmoxVe/pull/1444)) ### 🌐 Website -- Update kavita.json: Add info on how to enable folder adding. [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1447](https://github.com/community-scripts/ProxmoxVE/pull/1447)) +- Update kavita.json: Add info on how to enable folder adding. [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1447](https://github.com/Dracentis/ProxmoxVe/pull/1447)) ### 🧰 Maintenance -- GitHub Actions: Fix Shellsheck workflow to only run on changes `*.sh` files [@andygrunwald](https://github.com/andygrunwald) ([#1423](https://github.com/community-scripts/ProxmoxVE/pull/1423)) +- GitHub Actions: Fix Shellsheck workflow to only run on changes `*.sh` files [@andygrunwald](https://github.com/andygrunwald) ([#1423](https://github.com/Dracentis/ProxmoxVe/pull/1423)) ### ❔ Unlabelled -- feat: allow adding SSH authorized key for root (advanced settings) by @dsiebel [@MickLesk](https://github.com/MickLesk) ([#1456](https://github.com/community-scripts/ProxmoxVE/pull/1456)) +- feat: allow adding SSH authorized key for root (advanced settings) by @dsiebel [@MickLesk](https://github.com/MickLesk) ([#1456](https://github.com/Dracentis/ProxmoxVe/pull/1456)) ## 2025-01-11 @@ -325,10 +325,10 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Prometheus: Fix installation via creating the service file [@andygrunwald](https://github.com/andygrunwald) ([#1416](https://github.com/community-scripts/ProxmoxVE/pull/1416)) -- Update prometheus-install.sh: Service creation fix [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1417](https://github.com/community-scripts/ProxmoxVE/pull/1417)) -- Update prometheus-alertmanager-install.sh: Service Creation Fix [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1418](https://github.com/community-scripts/ProxmoxVE/pull/1418)) -- Fix: LubeLogger CT vehicle tag typo [@kkroboth](https://github.com/kkroboth) ([#1413](https://github.com/community-scripts/ProxmoxVE/pull/1413)) +- Prometheus: Fix installation via creating the service file [@andygrunwald](https://github.com/andygrunwald) ([#1416](https://github.com/Dracentis/ProxmoxVe/pull/1416)) +- Update prometheus-install.sh: Service creation fix [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1417](https://github.com/Dracentis/ProxmoxVe/pull/1417)) +- Update prometheus-alertmanager-install.sh: Service Creation Fix [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1418](https://github.com/Dracentis/ProxmoxVe/pull/1418)) +- Fix: LubeLogger CT vehicle tag typo [@kkroboth](https://github.com/kkroboth) ([#1413](https://github.com/Dracentis/ProxmoxVe/pull/1413)) ## 2025-01-10 @@ -336,29 +336,29 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New script : Ghost [@fabrice1236](https://github.com/fabrice1236) ([#1361](https://github.com/community-scripts/ProxmoxVE/pull/1361)) +- New script : Ghost [@fabrice1236](https://github.com/fabrice1236) ([#1361](https://github.com/Dracentis/ProxmoxVe/pull/1361)) ### 🚀 Updated Scripts -- Fix user in ghost-cli install command [@fabrice1236](https://github.com/fabrice1236) ([#1408](https://github.com/community-scripts/ProxmoxVE/pull/1408)) -- Update Prometheus + Alertmanager: Unify scripts for easier maintenance [@andygrunwald](https://github.com/andygrunwald) ([#1402](https://github.com/community-scripts/ProxmoxVE/pull/1402)) -- Update komodo.sh: Fix broken paths in update_script(). [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1403](https://github.com/community-scripts/ProxmoxVE/pull/1403)) -- Fix: ActualBudget Update-Function [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1376](https://github.com/community-scripts/ProxmoxVE/pull/1376)) -- Fix: bookstack.sh - Ignore empty folder [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1388](https://github.com/community-scripts/ProxmoxVE/pull/1388)) -- Fix: checkmk-install.sh: Version crawling. [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1385](https://github.com/community-scripts/ProxmoxVE/pull/1385)) +- Fix user in ghost-cli install command [@fabrice1236](https://github.com/fabrice1236) ([#1408](https://github.com/Dracentis/ProxmoxVe/pull/1408)) +- Update Prometheus + Alertmanager: Unify scripts for easier maintenance [@andygrunwald](https://github.com/andygrunwald) ([#1402](https://github.com/Dracentis/ProxmoxVe/pull/1402)) +- Update komodo.sh: Fix broken paths in update_script(). [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1403](https://github.com/Dracentis/ProxmoxVe/pull/1403)) +- Fix: ActualBudget Update-Function [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1376](https://github.com/Dracentis/ProxmoxVe/pull/1376)) +- Fix: bookstack.sh - Ignore empty folder [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1388](https://github.com/Dracentis/ProxmoxVe/pull/1388)) +- Fix: checkmk-install.sh: Version crawling. [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1385](https://github.com/Dracentis/ProxmoxVe/pull/1385)) ### 🌐 Website -- Change Website-Category of nzbget [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1379](https://github.com/community-scripts/ProxmoxVE/pull/1379)) +- Change Website-Category of nzbget [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1379](https://github.com/Dracentis/ProxmoxVe/pull/1379)) ### 🧰 Maintenance -- Update check_and_update_json_date.yml: Change path to /json [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1399](https://github.com/community-scripts/ProxmoxVE/pull/1399)) -- Visual Studio Code: Set Workspace recommended extensions [@andygrunwald](https://github.com/andygrunwald) ([#1398](https://github.com/community-scripts/ProxmoxVE/pull/1398)) -- [core]: add support for custom tags [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1384](https://github.com/community-scripts/ProxmoxVE/pull/1384)) -- [core]: check json date of new prs & update it [@MickLesk](https://github.com/MickLesk) ([#1395](https://github.com/community-scripts/ProxmoxVE/pull/1395)) -- Add initial PR for Contributing & Coding Standard [@MickLesk](https://github.com/MickLesk) ([#920](https://github.com/community-scripts/ProxmoxVE/pull/920)) -- [Core] add Github Action for Generate AppHeaders (figlet remove part 1) [@MickLesk](https://github.com/MickLesk) ([#1382](https://github.com/community-scripts/ProxmoxVE/pull/1382)) +- Update check_and_update_json_date.yml: Change path to /json [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1399](https://github.com/Dracentis/ProxmoxVe/pull/1399)) +- Visual Studio Code: Set Workspace recommended extensions [@andygrunwald](https://github.com/andygrunwald) ([#1398](https://github.com/Dracentis/ProxmoxVe/pull/1398)) +- [core]: add support for custom tags [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1384](https://github.com/Dracentis/ProxmoxVe/pull/1384)) +- [core]: check json date of new prs & update it [@MickLesk](https://github.com/MickLesk) ([#1395](https://github.com/Dracentis/ProxmoxVe/pull/1395)) +- Add initial PR for Contributing & Coding Standard [@MickLesk](https://github.com/MickLesk) ([#920](https://github.com/Dracentis/ProxmoxVe/pull/920)) +- [Core] add Github Action for Generate AppHeaders (figlet remove part 1) [@MickLesk](https://github.com/MickLesk) ([#1382](https://github.com/Dracentis/ProxmoxVe/pull/1382)) ## 2025-01-09 @@ -366,24 +366,24 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- Removal calibre-server (no Headless Support) [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1362](https://github.com/community-scripts/ProxmoxVE/pull/1362)) +- Removal calibre-server (no Headless Support) [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1362](https://github.com/Dracentis/ProxmoxVe/pull/1362)) ### ✨ New Scripts -- New Script: Prometheus Alertmanager [@andygrunwald](https://github.com/andygrunwald) ([#1272](https://github.com/community-scripts/ProxmoxVE/pull/1272)) -- New script: ps5-mqtt [@liecno](https://github.com/liecno) ([#1198](https://github.com/community-scripts/ProxmoxVE/pull/1198)) +- New Script: Prometheus Alertmanager [@andygrunwald](https://github.com/andygrunwald) ([#1272](https://github.com/Dracentis/ProxmoxVe/pull/1272)) +- New script: ps5-mqtt [@liecno](https://github.com/liecno) ([#1198](https://github.com/Dracentis/ProxmoxVe/pull/1198)) ### 🚀 Updated Scripts -- Fix: AdventureLog: unzip to /opt/ [@JesperDramsch](https://github.com/JesperDramsch) ([#1370](https://github.com/community-scripts/ProxmoxVE/pull/1370)) -- Fix: Stirling-PDF > LibreOffice/unoconv Integration Issues [@m6urns](https://github.com/m6urns) ([#1322](https://github.com/community-scripts/ProxmoxVE/pull/1322)) -- Fix: AdventureLog - update script bug [@JesperDramsch](https://github.com/JesperDramsch) ([#1334](https://github.com/community-scripts/ProxmoxVE/pull/1334)) -- Install/update ActualBudget based on releases, not latest master [@SpyrosRoum](https://github.com/SpyrosRoum) ([#1254](https://github.com/community-scripts/ProxmoxVE/pull/1254)) -- Fix Checkmk: Version grep broken [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1341](https://github.com/community-scripts/ProxmoxVE/pull/1341)) +- Fix: AdventureLog: unzip to /opt/ [@JesperDramsch](https://github.com/JesperDramsch) ([#1370](https://github.com/Dracentis/ProxmoxVe/pull/1370)) +- Fix: Stirling-PDF > LibreOffice/unoconv Integration Issues [@m6urns](https://github.com/m6urns) ([#1322](https://github.com/Dracentis/ProxmoxVe/pull/1322)) +- Fix: AdventureLog - update script bug [@JesperDramsch](https://github.com/JesperDramsch) ([#1334](https://github.com/Dracentis/ProxmoxVe/pull/1334)) +- Install/update ActualBudget based on releases, not latest master [@SpyrosRoum](https://github.com/SpyrosRoum) ([#1254](https://github.com/Dracentis/ProxmoxVe/pull/1254)) +- Fix Checkmk: Version grep broken [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1341](https://github.com/Dracentis/ProxmoxVe/pull/1341)) ### 🧰 Maintenance -- fix: only validate scripts in validate-scripts workflow [@se-bastiaan](https://github.com/se-bastiaan) ([#1344](https://github.com/community-scripts/ProxmoxVE/pull/1344)) +- fix: only validate scripts in validate-scripts workflow [@se-bastiaan](https://github.com/se-bastiaan) ([#1344](https://github.com/Dracentis/ProxmoxVe/pull/1344)) ## 2025-01-08 @@ -391,12 +391,12 @@ Do not break established syntax in this file, as it is automatically updated by ### 🌐 Website -- update postgresql json to add post install password setup [@rdiazlugo](https://github.com/rdiazlugo) ([#1318](https://github.com/community-scripts/ProxmoxVE/pull/1318)) +- update postgresql json to add post install password setup [@rdiazlugo](https://github.com/rdiazlugo) ([#1318](https://github.com/Dracentis/ProxmoxVe/pull/1318)) ### 🧰 Maintenance -- fix(ci): formatting event & chmod +x [@se-bastiaan](https://github.com/se-bastiaan) ([#1335](https://github.com/community-scripts/ProxmoxVE/pull/1335)) -- fix: correctly handle pull_request_target event [@se-bastiaan](https://github.com/se-bastiaan) ([#1327](https://github.com/community-scripts/ProxmoxVE/pull/1327)) +- fix(ci): formatting event & chmod +x [@se-bastiaan](https://github.com/se-bastiaan) ([#1335](https://github.com/Dracentis/ProxmoxVe/pull/1335)) +- fix: correctly handle pull_request_target event [@se-bastiaan](https://github.com/se-bastiaan) ([#1327](https://github.com/Dracentis/ProxmoxVe/pull/1327)) ## 2025-01-07 @@ -404,12 +404,12 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Fix: Folder-Check for Updatescript Zammad [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1309](https://github.com/community-scripts/ProxmoxVE/pull/1309)) +- Fix: Folder-Check for Updatescript Zammad [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1309](https://github.com/Dracentis/ProxmoxVe/pull/1309)) ### 🧰 Maintenance -- fix: permissions of validate pipelines [@se-bastiaan](https://github.com/se-bastiaan) ([#1316](https://github.com/community-scripts/ProxmoxVE/pull/1316)) -- Set Execution Rights for GH-Action: Validate Scripts [@MickLesk](https://github.com/MickLesk) ([#1312](https://github.com/community-scripts/ProxmoxVE/pull/1312)) +- fix: permissions of validate pipelines [@se-bastiaan](https://github.com/se-bastiaan) ([#1316](https://github.com/Dracentis/ProxmoxVe/pull/1316)) +- Set Execution Rights for GH-Action: Validate Scripts [@MickLesk](https://github.com/MickLesk) ([#1312](https://github.com/Dracentis/ProxmoxVe/pull/1312)) ## 2025-01-06 @@ -417,23 +417,23 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New Script: Typesense [@tlissak](https://github.com/tlissak) ([#1291](https://github.com/community-scripts/ProxmoxVE/pull/1291)) -- New script: GLPI [@opastorello](https://github.com/opastorello) ([#1201](https://github.com/community-scripts/ProxmoxVE/pull/1201)) +- New Script: Typesense [@tlissak](https://github.com/tlissak) ([#1291](https://github.com/Dracentis/ProxmoxVe/pull/1291)) +- New script: GLPI [@opastorello](https://github.com/opastorello) ([#1201](https://github.com/Dracentis/ProxmoxVe/pull/1201)) ### 🚀 Updated Scripts -- Fix Tag in HyperHDR Script [@MickLesk](https://github.com/MickLesk) ([#1299](https://github.com/community-scripts/ProxmoxVE/pull/1299)) -- [Fix]: Fixed rm Bug in pf2etools [@MickLesk](https://github.com/MickLesk) ([#1292](https://github.com/community-scripts/ProxmoxVE/pull/1292)) -- Fix: Homebox Update Script [@MickLesk](https://github.com/MickLesk) ([#1284](https://github.com/community-scripts/ProxmoxVE/pull/1284)) -- Add ca-certificates for Install (Frigate) [@MickLesk](https://github.com/MickLesk) ([#1282](https://github.com/community-scripts/ProxmoxVE/pull/1282)) -- fix: buffer from base64 in formatting pipeline [@se-bastiaan](https://github.com/se-bastiaan) ([#1285](https://github.com/community-scripts/ProxmoxVE/pull/1285)) +- Fix Tag in HyperHDR Script [@MickLesk](https://github.com/MickLesk) ([#1299](https://github.com/Dracentis/ProxmoxVe/pull/1299)) +- [Fix]: Fixed rm Bug in pf2etools [@MickLesk](https://github.com/MickLesk) ([#1292](https://github.com/Dracentis/ProxmoxVe/pull/1292)) +- Fix: Homebox Update Script [@MickLesk](https://github.com/MickLesk) ([#1284](https://github.com/Dracentis/ProxmoxVe/pull/1284)) +- Add ca-certificates for Install (Frigate) [@MickLesk](https://github.com/MickLesk) ([#1282](https://github.com/Dracentis/ProxmoxVe/pull/1282)) +- fix: buffer from base64 in formatting pipeline [@se-bastiaan](https://github.com/se-bastiaan) ([#1285](https://github.com/Dracentis/ProxmoxVe/pull/1285)) ### 🧰 Maintenance -- Add reapproval of Changelog-PR [@MickLesk](https://github.com/MickLesk) ([#1279](https://github.com/community-scripts/ProxmoxVE/pull/1279)) -- ci: combine header checks into workflow with PR comment [@se-bastiaan](https://github.com/se-bastiaan) ([#1257](https://github.com/community-scripts/ProxmoxVE/pull/1257)) -- ci: change filename checks into steps with PR comment [@se-bastiaan](https://github.com/se-bastiaan) ([#1255](https://github.com/community-scripts/ProxmoxVE/pull/1255)) -- ci: add pipeline for code formatting checks [@se-bastiaan](https://github.com/se-bastiaan) ([#1239](https://github.com/community-scripts/ProxmoxVE/pull/1239)) +- Add reapproval of Changelog-PR [@MickLesk](https://github.com/MickLesk) ([#1279](https://github.com/Dracentis/ProxmoxVe/pull/1279)) +- ci: combine header checks into workflow with PR comment [@se-bastiaan](https://github.com/se-bastiaan) ([#1257](https://github.com/Dracentis/ProxmoxVe/pull/1257)) +- ci: change filename checks into steps with PR comment [@se-bastiaan](https://github.com/se-bastiaan) ([#1255](https://github.com/Dracentis/ProxmoxVe/pull/1255)) +- ci: add pipeline for code formatting checks [@se-bastiaan](https://github.com/se-bastiaan) ([#1239](https://github.com/Dracentis/ProxmoxVe/pull/1239)) ## 2025-01-05 @@ -441,11 +441,11 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- [Breaking] Update Zigbee2mqtt to v.2.0.0 (Read PR Description) [@MickLesk](https://github.com/MickLesk) ([#1221](https://github.com/community-scripts/ProxmoxVE/pull/1221)) +- [Breaking] Update Zigbee2mqtt to v.2.0.0 (Read PR Description) [@MickLesk](https://github.com/MickLesk) ([#1221](https://github.com/Dracentis/ProxmoxVe/pull/1221)) ### ❔ Unlabelled -- Add RAM and Disk units [@oOStroudyOo](https://github.com/oOStroudyOo) ([#1261](https://github.com/community-scripts/ProxmoxVE/pull/1261)) +- Add RAM and Disk units [@oOStroudyOo](https://github.com/oOStroudyOo) ([#1261](https://github.com/Dracentis/ProxmoxVe/pull/1261)) ## 2025-01-04 @@ -453,20 +453,20 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Fix gpg key pf2tools & 5etools [@MickLesk](https://github.com/MickLesk) ([#1242](https://github.com/community-scripts/ProxmoxVE/pull/1242)) -- Homarr: Fix missing curl dependency [@MickLesk](https://github.com/MickLesk) ([#1238](https://github.com/community-scripts/ProxmoxVE/pull/1238)) -- Homeassistan Core: Fix Python3 and add missing dependencies [@MickLesk](https://github.com/MickLesk) ([#1236](https://github.com/community-scripts/ProxmoxVE/pull/1236)) -- Fix: Update Python for HomeAssistant [@MickLesk](https://github.com/MickLesk) ([#1227](https://github.com/community-scripts/ProxmoxVE/pull/1227)) -- OneDev: Add git-lfs [@MickLesk](https://github.com/MickLesk) ([#1225](https://github.com/community-scripts/ProxmoxVE/pull/1225)) -- Pf2eTools & 5eTools: Fixing npm build [@TheRealVira](https://github.com/TheRealVira) ([#1213](https://github.com/community-scripts/ProxmoxVE/pull/1213)) +- Fix gpg key pf2tools & 5etools [@MickLesk](https://github.com/MickLesk) ([#1242](https://github.com/Dracentis/ProxmoxVe/pull/1242)) +- Homarr: Fix missing curl dependency [@MickLesk](https://github.com/MickLesk) ([#1238](https://github.com/Dracentis/ProxmoxVe/pull/1238)) +- Homeassistan Core: Fix Python3 and add missing dependencies [@MickLesk](https://github.com/MickLesk) ([#1236](https://github.com/Dracentis/ProxmoxVe/pull/1236)) +- Fix: Update Python for HomeAssistant [@MickLesk](https://github.com/MickLesk) ([#1227](https://github.com/Dracentis/ProxmoxVe/pull/1227)) +- OneDev: Add git-lfs [@MickLesk](https://github.com/MickLesk) ([#1225](https://github.com/Dracentis/ProxmoxVe/pull/1225)) +- Pf2eTools & 5eTools: Fixing npm build [@TheRealVira](https://github.com/TheRealVira) ([#1213](https://github.com/Dracentis/ProxmoxVe/pull/1213)) ### 🌐 Website -- Bump next from 15.0.2 to 15.1.3 in /frontend [@dependabot[bot]](https://github.com/dependabot[bot]) ([#1212](https://github.com/community-scripts/ProxmoxVE/pull/1212)) +- Bump next from 15.0.2 to 15.1.3 in /frontend [@dependabot[bot]](https://github.com/dependabot[bot]) ([#1212](https://github.com/Dracentis/ProxmoxVe/pull/1212)) ### 🧰 Maintenance -- [GitHub Action] Add filename case check [@quantumryuu](https://github.com/quantumryuu) ([#1228](https://github.com/community-scripts/ProxmoxVE/pull/1228)) +- [GitHub Action] Add filename case check [@quantumryuu](https://github.com/quantumryuu) ([#1228](https://github.com/Dracentis/ProxmoxVe/pull/1228)) ## 2025-01-03 @@ -474,19 +474,19 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Improve Homarr Installation [@MickLesk](https://github.com/MickLesk) ([#1208](https://github.com/community-scripts/ProxmoxVE/pull/1208)) -- Fix: Zabbix-Update Script [@MickLesk](https://github.com/MickLesk) ([#1205](https://github.com/community-scripts/ProxmoxVE/pull/1205)) -- Update Script: Lazylibrarian [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1190](https://github.com/community-scripts/ProxmoxVE/pull/1190)) -- Fix: Memos update function [@MickLesk](https://github.com/MickLesk) ([#1207](https://github.com/community-scripts/ProxmoxVE/pull/1207)) -- Keep Lubelogger data after update to a new version [@JcMinarro](https://github.com/JcMinarro) ([#1200](https://github.com/community-scripts/ProxmoxVE/pull/1200)) +- Improve Homarr Installation [@MickLesk](https://github.com/MickLesk) ([#1208](https://github.com/Dracentis/ProxmoxVe/pull/1208)) +- Fix: Zabbix-Update Script [@MickLesk](https://github.com/MickLesk) ([#1205](https://github.com/Dracentis/ProxmoxVe/pull/1205)) +- Update Script: Lazylibrarian [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1190](https://github.com/Dracentis/ProxmoxVe/pull/1190)) +- Fix: Memos update function [@MickLesk](https://github.com/MickLesk) ([#1207](https://github.com/Dracentis/ProxmoxVe/pull/1207)) +- Keep Lubelogger data after update to a new version [@JcMinarro](https://github.com/JcMinarro) ([#1200](https://github.com/Dracentis/ProxmoxVe/pull/1200)) ### 🌐 Website -- Update Nextcloud-LXC JSON [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1191](https://github.com/community-scripts/ProxmoxVE/pull/1191)) +- Update Nextcloud-LXC JSON [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1191](https://github.com/Dracentis/ProxmoxVe/pull/1191)) ### 🧰 Maintenance -- Github action to check metadata lines in scripts. [@quantumryuu](https://github.com/quantumryuu) ([#1110](https://github.com/community-scripts/ProxmoxVE/pull/1110)) +- Github action to check metadata lines in scripts. [@quantumryuu](https://github.com/quantumryuu) ([#1110](https://github.com/Dracentis/ProxmoxVe/pull/1110)) ## 2025-01-02 @@ -494,12 +494,12 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New Script: Pf2eTools [@TheRealVira](https://github.com/TheRealVira) ([#1162](https://github.com/community-scripts/ProxmoxVE/pull/1162)) -- New Script: 5etools [@TheRealVira](https://github.com/TheRealVira) ([#1157](https://github.com/community-scripts/ProxmoxVE/pull/1157)) +- New Script: Pf2eTools [@TheRealVira](https://github.com/TheRealVira) ([#1162](https://github.com/Dracentis/ProxmoxVe/pull/1162)) +- New Script: 5etools [@TheRealVira](https://github.com/TheRealVira) ([#1157](https://github.com/Dracentis/ProxmoxVe/pull/1157)) ### 🚀 Updated Scripts -- Update config template in blocky-install.sh [@xFichtl1](https://github.com/xFichtl1) ([#1059](https://github.com/community-scripts/ProxmoxVE/pull/1059)) +- Update config template in blocky-install.sh [@xFichtl1](https://github.com/xFichtl1) ([#1059](https://github.com/Dracentis/ProxmoxVe/pull/1059)) ## 2025-01-01 @@ -507,24 +507,24 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New Script: Komodo [@MickLesk](https://github.com/MickLesk) ([#1167](https://github.com/community-scripts/ProxmoxVE/pull/1167)) -- New Script: Firefly [@quantumryuu](https://github.com/quantumryuu) ([#616](https://github.com/community-scripts/ProxmoxVE/pull/616)) -- New Script: Semaphore [@quantumryuu](https://github.com/quantumryuu) ([#596](https://github.com/community-scripts/ProxmoxVE/pull/596)) +- New Script: Komodo [@MickLesk](https://github.com/MickLesk) ([#1167](https://github.com/Dracentis/ProxmoxVe/pull/1167)) +- New Script: Firefly [@quantumryuu](https://github.com/quantumryuu) ([#616](https://github.com/Dracentis/ProxmoxVe/pull/616)) +- New Script: Semaphore [@quantumryuu](https://github.com/quantumryuu) ([#596](https://github.com/Dracentis/ProxmoxVe/pull/596)) ### 🚀 Updated Scripts -- Fix Script Homepage: add version during build step [@se-bastiaan](https://github.com/se-bastiaan) ([#1155](https://github.com/community-scripts/ProxmoxVE/pull/1155)) -- Happy new Year! Update Copyright to 2025 [@MickLesk](https://github.com/MickLesk) ([#1150](https://github.com/community-scripts/ProxmoxVE/pull/1150)) -- Update Kernel-Clean to new Version & Bugfixing [@MickLesk](https://github.com/MickLesk) ([#1147](https://github.com/community-scripts/ProxmoxVE/pull/1147)) -- Fix chromium installation for ArchiveBox [@tkunzfeld](https://github.com/tkunzfeld) ([#1140](https://github.com/community-scripts/ProxmoxVE/pull/1140)) +- Fix Script Homepage: add version during build step [@se-bastiaan](https://github.com/se-bastiaan) ([#1155](https://github.com/Dracentis/ProxmoxVe/pull/1155)) +- Happy new Year! Update Copyright to 2025 [@MickLesk](https://github.com/MickLesk) ([#1150](https://github.com/Dracentis/ProxmoxVe/pull/1150)) +- Update Kernel-Clean to new Version & Bugfixing [@MickLesk](https://github.com/MickLesk) ([#1147](https://github.com/Dracentis/ProxmoxVe/pull/1147)) +- Fix chromium installation for ArchiveBox [@tkunzfeld](https://github.com/tkunzfeld) ([#1140](https://github.com/Dracentis/ProxmoxVe/pull/1140)) ### 🌐 Website -- Fix Category of Semaphore [@MickLesk](https://github.com/MickLesk) ([#1148](https://github.com/community-scripts/ProxmoxVE/pull/1148)) +- Fix Category of Semaphore [@MickLesk](https://github.com/MickLesk) ([#1148](https://github.com/Dracentis/ProxmoxVe/pull/1148)) ### 🧰 Maintenance -- Correctly check for changed files in Shellcheck workflow [@se-bastiaan](https://github.com/se-bastiaan) ([#1156](https://github.com/community-scripts/ProxmoxVE/pull/1156)) +- Correctly check for changed files in Shellcheck workflow [@se-bastiaan](https://github.com/se-bastiaan) ([#1156](https://github.com/Dracentis/ProxmoxVe/pull/1156)) ## 2024-12-31 - Happy new Year! 🎉✨ @@ -532,16 +532,16 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- Add ExecReload to prometheus.service [@BasixKOR](https://github.com/BasixKOR) ([#1131](https://github.com/community-scripts/ProxmoxVE/pull/1131)) -- Fix: Figlet Version & Font Check [@MickLesk](https://github.com/MickLesk) ([#1133](https://github.com/community-scripts/ProxmoxVE/pull/1133)) +- Add ExecReload to prometheus.service [@BasixKOR](https://github.com/BasixKOR) ([#1131](https://github.com/Dracentis/ProxmoxVe/pull/1131)) +- Fix: Figlet Version & Font Check [@MickLesk](https://github.com/MickLesk) ([#1133](https://github.com/Dracentis/ProxmoxVe/pull/1133)) ### 🚀 Updated Scripts -- Fix: Copy issue after update in Bookstack LXC [@MickLesk](https://github.com/MickLesk) ([#1137](https://github.com/community-scripts/ProxmoxVE/pull/1137)) -- Omada: Switch Base-URL to prevent issues [@MickLesk](https://github.com/MickLesk) ([#1135](https://github.com/community-scripts/ProxmoxVE/pull/1135)) -- fix: guacd service not start during Apache-Guacamole script installation process [@PhoenixEmik](https://github.com/PhoenixEmik) ([#1122](https://github.com/community-scripts/ProxmoxVE/pull/1122)) -- Fix Homepage-Script: Installation/Update [@MickLesk](https://github.com/MickLesk) ([#1129](https://github.com/community-scripts/ProxmoxVE/pull/1129)) -- Netbox: Updating URL to https [@surajsbmn](https://github.com/surajsbmn) ([#1124](https://github.com/community-scripts/ProxmoxVE/pull/1124)) +- Fix: Copy issue after update in Bookstack LXC [@MickLesk](https://github.com/MickLesk) ([#1137](https://github.com/Dracentis/ProxmoxVe/pull/1137)) +- Omada: Switch Base-URL to prevent issues [@MickLesk](https://github.com/MickLesk) ([#1135](https://github.com/Dracentis/ProxmoxVe/pull/1135)) +- fix: guacd service not start during Apache-Guacamole script installation process [@PhoenixEmik](https://github.com/PhoenixEmik) ([#1122](https://github.com/Dracentis/ProxmoxVe/pull/1122)) +- Fix Homepage-Script: Installation/Update [@MickLesk](https://github.com/MickLesk) ([#1129](https://github.com/Dracentis/ProxmoxVe/pull/1129)) +- Netbox: Updating URL to https [@surajsbmn](https://github.com/surajsbmn) ([#1124](https://github.com/Dracentis/ProxmoxVe/pull/1124)) ## 2024-12-30 @@ -549,12 +549,12 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- [Archivebox] Fix wrong port being printed post install. [@Strana-Mechty](https://github.com/Strana-Mechty) ([#1105](https://github.com/community-scripts/ProxmoxVE/pull/1105)) -- fix: add homepage version during build step [@se-bastiaan](https://github.com/se-bastiaan) ([#1107](https://github.com/community-scripts/ProxmoxVE/pull/1107)) +- [Archivebox] Fix wrong port being printed post install. [@Strana-Mechty](https://github.com/Strana-Mechty) ([#1105](https://github.com/Dracentis/ProxmoxVe/pull/1105)) +- fix: add homepage version during build step [@se-bastiaan](https://github.com/se-bastiaan) ([#1107](https://github.com/Dracentis/ProxmoxVe/pull/1107)) ### 🌐 Website -- Fix Trilium Website to TriliumNext [@tmkis2](https://github.com/tmkis2) ([#1103](https://github.com/community-scripts/ProxmoxVE/pull/1103)) +- Fix Trilium Website to TriliumNext [@tmkis2](https://github.com/tmkis2) ([#1103](https://github.com/Dracentis/ProxmoxVe/pull/1103)) ## 2024-12-29 @@ -562,20 +562,20 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New Script: Grist [@cfurrow](https://github.com/cfurrow) ([#1076](https://github.com/community-scripts/ProxmoxVE/pull/1076)) -- New Script: TeddyCloud Server [@dsiebel](https://github.com/dsiebel) ([#1064](https://github.com/community-scripts/ProxmoxVE/pull/1064)) +- New Script: Grist [@cfurrow](https://github.com/cfurrow) ([#1076](https://github.com/Dracentis/ProxmoxVe/pull/1076)) +- New Script: TeddyCloud Server [@dsiebel](https://github.com/dsiebel) ([#1064](https://github.com/Dracentis/ProxmoxVe/pull/1064)) ### 🚀 Updated Scripts -- Fix Install / Update on Grist Script [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1091](https://github.com/community-scripts/ProxmoxVE/pull/1091)) +- Fix Install / Update on Grist Script [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1091](https://github.com/Dracentis/ProxmoxVe/pull/1091)) ### 🌐 Website -- fix: Update add-lxc-iptag.json warn to warning [@BramSuurdje](https://github.com/BramSuurdje) ([#1094](https://github.com/community-scripts/ProxmoxVE/pull/1094)) +- fix: Update add-lxc-iptag.json warn to warning [@BramSuurdje](https://github.com/BramSuurdje) ([#1094](https://github.com/Dracentis/ProxmoxVe/pull/1094)) ### 🧰 Maintenance -- Introduce editorconfig for more consistent formatting [@dsiebel](https://github.com/dsiebel) ([#1073](https://github.com/community-scripts/ProxmoxVE/pull/1073)) +- Introduce editorconfig for more consistent formatting [@dsiebel](https://github.com/dsiebel) ([#1073](https://github.com/Dracentis/ProxmoxVe/pull/1073)) ## 2024-12-28 @@ -583,13 +583,13 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- Add Figlet into Repo | Creation of local ASCII Header [@MickLesk](https://github.com/MickLesk) ([#1072](https://github.com/community-scripts/ProxmoxVE/pull/1072)) -- Add an IP-Update for MOTD if IP Changed [@MickLesk](https://github.com/MickLesk) ([#1067](https://github.com/community-scripts/ProxmoxVE/pull/1067)) +- Add Figlet into Repo | Creation of local ASCII Header [@MickLesk](https://github.com/MickLesk) ([#1072](https://github.com/Dracentis/ProxmoxVe/pull/1072)) +- Add an IP-Update for MOTD if IP Changed [@MickLesk](https://github.com/MickLesk) ([#1067](https://github.com/Dracentis/ProxmoxVe/pull/1067)) ### 🚀 Updated Scripts -- Zabbix: Fix SQL Path for 7.2 [@MickLesk](https://github.com/MickLesk) ([#1069](https://github.com/community-scripts/ProxmoxVE/pull/1069)) -- Authentik: added missing port to access url [@TheRealVira](https://github.com/TheRealVira) ([#1065](https://github.com/community-scripts/ProxmoxVE/pull/1065)) +- Zabbix: Fix SQL Path for 7.2 [@MickLesk](https://github.com/MickLesk) ([#1069](https://github.com/Dracentis/ProxmoxVe/pull/1069)) +- Authentik: added missing port to access url [@TheRealVira](https://github.com/TheRealVira) ([#1065](https://github.com/Dracentis/ProxmoxVe/pull/1065)) ## 2024-12-27 @@ -597,22 +597,22 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- new scripts for Authentik [@remz1337](https://github.com/remz1337) ([#291](https://github.com/community-scripts/ProxmoxVE/pull/291)) +- new scripts for Authentik [@remz1337](https://github.com/remz1337) ([#291](https://github.com/Dracentis/ProxmoxVe/pull/291)) ### 🚀 Updated Scripts -- Add 8.0 for MongoDB Installation [@MickLesk](https://github.com/MickLesk) ([#1046](https://github.com/community-scripts/ProxmoxVE/pull/1046)) -- Update Zabbix to 7.2. Release [@MickLesk](https://github.com/MickLesk) ([#1048](https://github.com/community-scripts/ProxmoxVE/pull/1048)) -- Apache-Guacamole script bug fix [@sannier3](https://github.com/sannier3) ([#1039](https://github.com/community-scripts/ProxmoxVE/pull/1039)) +- Add 8.0 for MongoDB Installation [@MickLesk](https://github.com/MickLesk) ([#1046](https://github.com/Dracentis/ProxmoxVe/pull/1046)) +- Update Zabbix to 7.2. Release [@MickLesk](https://github.com/MickLesk) ([#1048](https://github.com/Dracentis/ProxmoxVe/pull/1048)) +- Apache-Guacamole script bug fix [@sannier3](https://github.com/sannier3) ([#1039](https://github.com/Dracentis/ProxmoxVe/pull/1039)) ### 🌐 Website -- Updated SAB documentation based on RAM increase [@TheRealVira](https://github.com/TheRealVira) ([#1035](https://github.com/community-scripts/ProxmoxVE/pull/1035)) +- Updated SAB documentation based on RAM increase [@TheRealVira](https://github.com/TheRealVira) ([#1035](https://github.com/Dracentis/ProxmoxVe/pull/1035)) ### ❔ Unlabelled -- Patch Figlet Repo if missing [@MickLesk](https://github.com/MickLesk) ([#1044](https://github.com/community-scripts/ProxmoxVE/pull/1044)) -- fix Tags for Advanced Settings [@MickLesk](https://github.com/MickLesk) ([#1042](https://github.com/community-scripts/ProxmoxVE/pull/1042)) +- Patch Figlet Repo if missing [@MickLesk](https://github.com/MickLesk) ([#1044](https://github.com/Dracentis/ProxmoxVe/pull/1044)) +- fix Tags for Advanced Settings [@MickLesk](https://github.com/MickLesk) ([#1042](https://github.com/Dracentis/ProxmoxVe/pull/1042)) ## 2024-12-26 @@ -620,18 +620,18 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New Script: Jenkins [@quantumryuu](https://github.com/quantumryuu) ([#1019](https://github.com/community-scripts/ProxmoxVE/pull/1019)) -- New Script: 2FAuth [@jkrgr0](https://github.com/jkrgr0) ([#943](https://github.com/community-scripts/ProxmoxVE/pull/943)) +- New Script: Jenkins [@quantumryuu](https://github.com/quantumryuu) ([#1019](https://github.com/Dracentis/ProxmoxVe/pull/1019)) +- New Script: 2FAuth [@jkrgr0](https://github.com/jkrgr0) ([#943](https://github.com/Dracentis/ProxmoxVe/pull/943)) ### 🚀 Updated Scripts -- ChangeDetection Update: Update also Browsers [@Niklas04](https://github.com/Niklas04) ([#1027](https://github.com/community-scripts/ProxmoxVE/pull/1027)) -- ensure all RFC1918 local Ipv4 addresses are in iptag script [@AskAlice](https://github.com/AskAlice) ([#992](https://github.com/community-scripts/ProxmoxVE/pull/992)) -- Fix Proxmox DataCenter: incorrect build.func url [@rbradley0](https://github.com/rbradley0) ([#1013](https://github.com/community-scripts/ProxmoxVE/pull/1013)) +- ChangeDetection Update: Update also Browsers [@Niklas04](https://github.com/Niklas04) ([#1027](https://github.com/Dracentis/ProxmoxVe/pull/1027)) +- ensure all RFC1918 local Ipv4 addresses are in iptag script [@AskAlice](https://github.com/AskAlice) ([#992](https://github.com/Dracentis/ProxmoxVe/pull/992)) +- Fix Proxmox DataCenter: incorrect build.func url [@rbradley0](https://github.com/rbradley0) ([#1013](https://github.com/Dracentis/ProxmoxVe/pull/1013)) ### 🧰 Maintenance -- [GitHub Actions] Introduce Shellcheck to check bash code [@andygrunwald](https://github.com/andygrunwald) ([#1018](https://github.com/community-scripts/ProxmoxVE/pull/1018)) +- [GitHub Actions] Introduce Shellcheck to check bash code [@andygrunwald](https://github.com/andygrunwald) ([#1018](https://github.com/Dracentis/ProxmoxVe/pull/1018)) ## 2024-12-25 @@ -639,12 +639,12 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- add: pve-datacenter-manager [@CrazyWolf13](https://github.com/CrazyWolf13) ([#947](https://github.com/community-scripts/ProxmoxVE/pull/947)) +- add: pve-datacenter-manager [@CrazyWolf13](https://github.com/CrazyWolf13) ([#947](https://github.com/Dracentis/ProxmoxVe/pull/947)) ### 🚀 Updated Scripts -- Fix Script: Alpine Nextcloud Upload File Size Limit [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#933](https://github.com/community-scripts/ProxmoxVE/pull/933)) -- Doubled RAM for SAB [@TheRealVira](https://github.com/TheRealVira) ([#1007](https://github.com/community-scripts/ProxmoxVE/pull/1007)) +- Fix Script: Alpine Nextcloud Upload File Size Limit [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#933](https://github.com/Dracentis/ProxmoxVe/pull/933)) +- Doubled RAM for SAB [@TheRealVira](https://github.com/TheRealVira) ([#1007](https://github.com/Dracentis/ProxmoxVe/pull/1007)) ## 2024-12-23 @@ -652,8 +652,8 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Fix Navidrome Update & Install [@MickLesk](https://github.com/MickLesk) ([#991](https://github.com/community-scripts/ProxmoxVE/pull/991)) -- Update emby.sh to correct port [@Rageplant](https://github.com/Rageplant) ([#989](https://github.com/community-scripts/ProxmoxVE/pull/989)) +- Fix Navidrome Update & Install [@MickLesk](https://github.com/MickLesk) ([#991](https://github.com/Dracentis/ProxmoxVe/pull/991)) +- Update emby.sh to correct port [@Rageplant](https://github.com/Rageplant) ([#989](https://github.com/Dracentis/ProxmoxVe/pull/989)) ## 2024-12-21 @@ -661,7 +661,7 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- update Port in homeassistant-core CT [@fraefel](https://github.com/fraefel) ([#961](https://github.com/community-scripts/ProxmoxVE/pull/961)) +- update Port in homeassistant-core CT [@fraefel](https://github.com/fraefel) ([#961](https://github.com/Dracentis/ProxmoxVe/pull/961)) ## 2024-12-20 @@ -669,23 +669,23 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New Script: Apache Guacamole [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#657](https://github.com/community-scripts/ProxmoxVE/pull/657)) -- New Script: silverbullet [@dsiebel](https://github.com/dsiebel) ([#659](https://github.com/community-scripts/ProxmoxVE/pull/659)) -- New Script: Zammad [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#640](https://github.com/community-scripts/ProxmoxVE/pull/640)) -- New Script: CheckMk [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#926](https://github.com/community-scripts/ProxmoxVE/pull/926)) +- New Script: Apache Guacamole [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#657](https://github.com/Dracentis/ProxmoxVe/pull/657)) +- New Script: silverbullet [@dsiebel](https://github.com/dsiebel) ([#659](https://github.com/Dracentis/ProxmoxVe/pull/659)) +- New Script: Zammad [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#640](https://github.com/Dracentis/ProxmoxVe/pull/640)) +- New Script: CheckMk [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#926](https://github.com/Dracentis/ProxmoxVe/pull/926)) ### 🚀 Updated Scripts -- Fix: Remove PHP Key generation in Bookstack Update [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#948](https://github.com/community-scripts/ProxmoxVE/pull/948)) +- Fix: Remove PHP Key generation in Bookstack Update [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#948](https://github.com/Dracentis/ProxmoxVe/pull/948)) ### 🌐 Website -- Update checkmk description [@BramSuurdje](https://github.com/BramSuurdje) ([#954](https://github.com/community-scripts/ProxmoxVE/pull/954)) -- Add Login Note for Checkmk [@MickLesk](https://github.com/MickLesk) ([#940](https://github.com/community-scripts/ProxmoxVE/pull/940)) +- Update checkmk description [@BramSuurdje](https://github.com/BramSuurdje) ([#954](https://github.com/Dracentis/ProxmoxVe/pull/954)) +- Add Login Note for Checkmk [@MickLesk](https://github.com/MickLesk) ([#940](https://github.com/Dracentis/ProxmoxVe/pull/940)) ### ❔ Unlabelled -- Update build.func to display the Proxmox Hostname [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#894](https://github.com/community-scripts/ProxmoxVE/pull/894)) +- Update build.func to display the Proxmox Hostname [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#894](https://github.com/Dracentis/ProxmoxVe/pull/894)) ## 2024-12-19 @@ -693,15 +693,15 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Fix: Bookstack Update Function [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#844](https://github.com/community-scripts/ProxmoxVE/pull/844)) -- mysql not showing ip after install [@snow2k9](https://github.com/snow2k9) ([#924](https://github.com/community-scripts/ProxmoxVE/pull/924)) -- Fix Omada - Crawling latest version [@MickLesk](https://github.com/MickLesk) ([#918](https://github.com/community-scripts/ProxmoxVE/pull/918)) +- Fix: Bookstack Update Function [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#844](https://github.com/Dracentis/ProxmoxVe/pull/844)) +- mysql not showing ip after install [@snow2k9](https://github.com/snow2k9) ([#924](https://github.com/Dracentis/ProxmoxVe/pull/924)) +- Fix Omada - Crawling latest version [@MickLesk](https://github.com/MickLesk) ([#918](https://github.com/Dracentis/ProxmoxVe/pull/918)) ### 🌐 Website -- Fix script path formatting in InstallMethod component [@BramSuurdje](https://github.com/BramSuurdje) ([#909](https://github.com/community-scripts/ProxmoxVE/pull/909)) -- Fix Part-DB Docu (cred command) [@EvilBlood](https://github.com/EvilBlood) ([#898](https://github.com/community-scripts/ProxmoxVE/pull/898)) -- Enhance Tooltip component by adding CircleHelp icon and fix instructions in script component [@BramSuurdje](https://github.com/BramSuurdje) ([#910](https://github.com/community-scripts/ProxmoxVE/pull/910)) +- Fix script path formatting in InstallMethod component [@BramSuurdje](https://github.com/BramSuurdje) ([#909](https://github.com/Dracentis/ProxmoxVe/pull/909)) +- Fix Part-DB Docu (cred command) [@EvilBlood](https://github.com/EvilBlood) ([#898](https://github.com/Dracentis/ProxmoxVe/pull/898)) +- Enhance Tooltip component by adding CircleHelp icon and fix instructions in script component [@BramSuurdje](https://github.com/BramSuurdje) ([#910](https://github.com/Dracentis/ProxmoxVe/pull/910)) ## 2024-12-18 @@ -709,17 +709,17 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New script: Part-DB LXC [@bvdberg01](https://github.com/bvdberg01) ([#591](https://github.com/community-scripts/ProxmoxVE/pull/591)) +- New script: Part-DB LXC [@bvdberg01](https://github.com/bvdberg01) ([#591](https://github.com/Dracentis/ProxmoxVe/pull/591)) ### 🚀 Updated Scripts -- Fix Kernel-Clean for Proxmox 8.x [@MickLesk](https://github.com/MickLesk) ([#904](https://github.com/community-scripts/ProxmoxVE/pull/904)) -- [Frigate] Remove SSE 4.2 from instruction set supporting OpenVino [@remz1337](https://github.com/remz1337) ([#902](https://github.com/community-scripts/ProxmoxVE/pull/902)) +- Fix Kernel-Clean for Proxmox 8.x [@MickLesk](https://github.com/MickLesk) ([#904](https://github.com/Dracentis/ProxmoxVe/pull/904)) +- [Frigate] Remove SSE 4.2 from instruction set supporting OpenVino [@remz1337](https://github.com/remz1337) ([#902](https://github.com/Dracentis/ProxmoxVe/pull/902)) ### 🌐 Website -- New Metadata Category: "Coding & AI" [@newzealandpaul](https://github.com/newzealandpaul) ([#890](https://github.com/community-scripts/ProxmoxVE/pull/890)) -- Moved Webmin to "Server & Networking" [@newzealandpaul](https://github.com/newzealandpaul) ([#891](https://github.com/community-scripts/ProxmoxVE/pull/891)) +- New Metadata Category: "Coding & AI" [@newzealandpaul](https://github.com/newzealandpaul) ([#890](https://github.com/Dracentis/ProxmoxVe/pull/890)) +- Moved Webmin to "Server & Networking" [@newzealandpaul](https://github.com/newzealandpaul) ([#891](https://github.com/Dracentis/ProxmoxVe/pull/891)) ## 2024-12-17 @@ -727,20 +727,20 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Fix Alpine-Nextcloud: Bump PHP Version to 8.3 [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#865](https://github.com/community-scripts/ProxmoxVE/pull/865)) -- Correction of Jellyfin CT Port [@mneten](https://github.com/mneten) ([#884](https://github.com/community-scripts/ProxmoxVE/pull/884)) -- fix spinner on lxc-ip-tag [@MickLesk](https://github.com/MickLesk) ([#876](https://github.com/community-scripts/ProxmoxVE/pull/876)) -- Fix Keycloak Installation [@MickLesk](https://github.com/MickLesk) ([#874](https://github.com/community-scripts/ProxmoxVE/pull/874)) -- Fix ports ressources [@MickLesk](https://github.com/MickLesk) ([#867](https://github.com/community-scripts/ProxmoxVE/pull/867)) +- Fix Alpine-Nextcloud: Bump PHP Version to 8.3 [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#865](https://github.com/Dracentis/ProxmoxVe/pull/865)) +- Correction of Jellyfin CT Port [@mneten](https://github.com/mneten) ([#884](https://github.com/Dracentis/ProxmoxVe/pull/884)) +- fix spinner on lxc-ip-tag [@MickLesk](https://github.com/MickLesk) ([#876](https://github.com/Dracentis/ProxmoxVe/pull/876)) +- Fix Keycloak Installation [@MickLesk](https://github.com/MickLesk) ([#874](https://github.com/Dracentis/ProxmoxVe/pull/874)) +- Fix ports ressources [@MickLesk](https://github.com/MickLesk) ([#867](https://github.com/Dracentis/ProxmoxVe/pull/867)) ### 🧰 Maintenance -- Small Changes to the PR Template [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#862](https://github.com/community-scripts/ProxmoxVE/pull/862)) +- Small Changes to the PR Template [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#862](https://github.com/Dracentis/ProxmoxVe/pull/862)) ### ❔ Unlabelled -- calculate terminal size for header_info [@MickLesk](https://github.com/MickLesk) ([#879](https://github.com/community-scripts/ProxmoxVE/pull/879)) -- Fix header creation with figlet for alpine [@MickLesk](https://github.com/MickLesk) ([#869](https://github.com/community-scripts/ProxmoxVE/pull/869)) +- calculate terminal size for header_info [@MickLesk](https://github.com/MickLesk) ([#879](https://github.com/Dracentis/ProxmoxVe/pull/879)) +- Fix header creation with figlet for alpine [@MickLesk](https://github.com/MickLesk) ([#869](https://github.com/Dracentis/ProxmoxVe/pull/869)) ## 2024-12-16 @@ -748,27 +748,27 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- Massive Update: build.func | install.func | create_lxc.sh (Part 1) [@MickLesk](https://github.com/MickLesk) ([#643](https://github.com/community-scripts/ProxmoxVE/pull/643)) -- Update ALL CT's to new default (Part 2) [@MickLesk](https://github.com/MickLesk) ([#710](https://github.com/community-scripts/ProxmoxVE/pull/710)) +- Massive Update: build.func | install.func | create_lxc.sh (Part 1) [@MickLesk](https://github.com/MickLesk) ([#643](https://github.com/Dracentis/ProxmoxVe/pull/643)) +- Update ALL CT's to new default (Part 2) [@MickLesk](https://github.com/MickLesk) ([#710](https://github.com/Dracentis/ProxmoxVe/pull/710)) ### ✨ New Scripts -- New Script: LXC IP-Tag [@MickLesk](https://github.com/MickLesk) ([#536](https://github.com/community-scripts/ProxmoxVE/pull/536)) +- New Script: LXC IP-Tag [@MickLesk](https://github.com/MickLesk) ([#536](https://github.com/Dracentis/ProxmoxVe/pull/536)) ### 🚀 Updated Scripts -- Increase Size | Description & Download-URL of Debian VM [@MickLesk](https://github.com/MickLesk) ([#837](https://github.com/community-scripts/ProxmoxVE/pull/837)) -- Update Script: Remove Docker Compose Question [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#847](https://github.com/community-scripts/ProxmoxVE/pull/847)) +- Increase Size | Description & Download-URL of Debian VM [@MickLesk](https://github.com/MickLesk) ([#837](https://github.com/Dracentis/ProxmoxVe/pull/837)) +- Update Script: Remove Docker Compose Question [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#847](https://github.com/Dracentis/ProxmoxVe/pull/847)) ### 🌐 Website -- Bump nanoid from 3.3.7 to 3.3.8 in /frontend [@dependabot[bot]](https://github.com/dependabot[bot]) ([#845](https://github.com/community-scripts/ProxmoxVE/pull/845)) +- Bump nanoid from 3.3.7 to 3.3.8 in /frontend [@dependabot[bot]](https://github.com/dependabot[bot]) ([#845](https://github.com/Dracentis/ProxmoxVe/pull/845)) ### ❔ Unlabelled -- Fix SSH root access in install.func [@havardthom](https://github.com/havardthom) ([#858](https://github.com/community-scripts/ProxmoxVE/pull/858)) -- Fix variable name for CT_TYPE override [@remz1337](https://github.com/remz1337) ([#855](https://github.com/community-scripts/ProxmoxVE/pull/855)) -- Keeps the same style after writing the SEARCH icon [@remz1337](https://github.com/remz1337) ([#851](https://github.com/community-scripts/ProxmoxVE/pull/851)) +- Fix SSH root access in install.func [@havardthom](https://github.com/havardthom) ([#858](https://github.com/Dracentis/ProxmoxVe/pull/858)) +- Fix variable name for CT_TYPE override [@remz1337](https://github.com/remz1337) ([#855](https://github.com/Dracentis/ProxmoxVe/pull/855)) +- Keeps the same style after writing the SEARCH icon [@remz1337](https://github.com/remz1337) ([#851](https://github.com/Dracentis/ProxmoxVe/pull/851)) ## 2024-12-13 @@ -776,18 +776,18 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Fix Keycloak Update Function [@MickLesk](https://github.com/MickLesk) ([#762](https://github.com/community-scripts/ProxmoxVE/pull/762)) -- Fix config bug in Alpine Vaultwarden [@havardthom](https://github.com/havardthom) ([#775](https://github.com/community-scripts/ProxmoxVE/pull/775)) +- Fix Keycloak Update Function [@MickLesk](https://github.com/MickLesk) ([#762](https://github.com/Dracentis/ProxmoxVe/pull/762)) +- Fix config bug in Alpine Vaultwarden [@havardthom](https://github.com/havardthom) ([#775](https://github.com/Dracentis/ProxmoxVe/pull/775)) ### 🌐 Website -- Change MISC from red to green [@MickLesk](https://github.com/MickLesk) ([#815](https://github.com/community-scripts/ProxmoxVE/pull/815)) -- Update some JSON Files for Website [@MickLesk](https://github.com/MickLesk) ([#812](https://github.com/community-scripts/ProxmoxVE/pull/812)) -- Update Notes & Documentation for Proxmox Backup Server [@MickLesk](https://github.com/MickLesk) ([#804](https://github.com/community-scripts/ProxmoxVE/pull/804)) +- Change MISC from red to green [@MickLesk](https://github.com/MickLesk) ([#815](https://github.com/Dracentis/ProxmoxVe/pull/815)) +- Update some JSON Files for Website [@MickLesk](https://github.com/MickLesk) ([#812](https://github.com/Dracentis/ProxmoxVe/pull/812)) +- Update Notes & Documentation for Proxmox Backup Server [@MickLesk](https://github.com/MickLesk) ([#804](https://github.com/Dracentis/ProxmoxVe/pull/804)) ### 🧰 Maintenance -- Github: Optimize Issue Template & PR Template [@MickLesk](https://github.com/MickLesk) ([#802](https://github.com/community-scripts/ProxmoxVE/pull/802)) +- Github: Optimize Issue Template & PR Template [@MickLesk](https://github.com/MickLesk) ([#802](https://github.com/Dracentis/ProxmoxVe/pull/802)) ## 2024-12-12 @@ -795,17 +795,17 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Update jellyfin.sh / Fix infinite loop [@gerpo](https://github.com/gerpo) ([#792](https://github.com/community-scripts/ProxmoxVE/pull/792)) +- Update jellyfin.sh / Fix infinite loop [@gerpo](https://github.com/gerpo) ([#792](https://github.com/Dracentis/ProxmoxVe/pull/792)) ### 🌐 Website -- Fix port and website in nextcloudpi.json [@PhoenixEmik](https://github.com/PhoenixEmik) ([#790](https://github.com/community-scripts/ProxmoxVE/pull/790)) -- Add post-install note to mqtt.json [@havardthom](https://github.com/havardthom) ([#783](https://github.com/community-scripts/ProxmoxVE/pull/783)) +- Fix port and website in nextcloudpi.json [@PhoenixEmik](https://github.com/PhoenixEmik) ([#790](https://github.com/Dracentis/ProxmoxVe/pull/790)) +- Add post-install note to mqtt.json [@havardthom](https://github.com/havardthom) ([#783](https://github.com/Dracentis/ProxmoxVe/pull/783)) ### 🧰 Maintenance -- Filter pull requests on main branch in changelog-pr.yml [@havardthom](https://github.com/havardthom) ([#793](https://github.com/community-scripts/ProxmoxVE/pull/793)) -- Fix Z-Wave JS UI Breaking Change in CHANGELOG.md [@havardthom](https://github.com/havardthom) ([#781](https://github.com/community-scripts/ProxmoxVE/pull/781)) +- Filter pull requests on main branch in changelog-pr.yml [@havardthom](https://github.com/havardthom) ([#793](https://github.com/Dracentis/ProxmoxVe/pull/793)) +- Fix Z-Wave JS UI Breaking Change in CHANGELOG.md [@havardthom](https://github.com/havardthom) ([#781](https://github.com/Dracentis/ProxmoxVe/pull/781)) ## 2024-12-09 @@ -813,7 +813,7 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Fix PostgreSQL password bug in Umami install [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#750](https://github.com/community-scripts/ProxmoxVE/pull/750)) +- Fix PostgreSQL password bug in Umami install [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#750](https://github.com/Dracentis/ProxmoxVe/pull/750)) ## 2024-12-08 @@ -821,11 +821,11 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Use MongoDB 4.4 in Unifi for non-AVX users [@havardthom](https://github.com/havardthom) ([#691](https://github.com/community-scripts/ProxmoxVE/pull/691)) +- Use MongoDB 4.4 in Unifi for non-AVX users [@havardthom](https://github.com/havardthom) ([#691](https://github.com/Dracentis/ProxmoxVe/pull/691)) ### 🌐 Website -- Move homarr to Dashboards section [@CrazyWolf13](https://github.com/CrazyWolf13) ([#740](https://github.com/community-scripts/ProxmoxVE/pull/740)) +- Move homarr to Dashboards section [@CrazyWolf13](https://github.com/CrazyWolf13) ([#740](https://github.com/Dracentis/ProxmoxVe/pull/740)) ## 2024-12-07 @@ -833,16 +833,16 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Zigbee2MQTT: Remove dev branch choice until v2.0.0 release [@havardthom](https://github.com/havardthom) ([#702](https://github.com/community-scripts/ProxmoxVE/pull/702)) -- Fix Hoarder build failure by installing Chromium stable [@vhsdream](https://github.com/vhsdream) ([#723](https://github.com/community-scripts/ProxmoxVE/pull/723)) +- Zigbee2MQTT: Remove dev branch choice until v2.0.0 release [@havardthom](https://github.com/havardthom) ([#702](https://github.com/Dracentis/ProxmoxVe/pull/702)) +- Fix Hoarder build failure by installing Chromium stable [@vhsdream](https://github.com/vhsdream) ([#723](https://github.com/Dracentis/ProxmoxVe/pull/723)) ### 🌐 Website -- Bugfix: Include script name in website search [@havardthom](https://github.com/havardthom) ([#731](https://github.com/community-scripts/ProxmoxVE/pull/731)) +- Bugfix: Include script name in website search [@havardthom](https://github.com/havardthom) ([#731](https://github.com/Dracentis/ProxmoxVe/pull/731)) ### ❔ Unlabelled -- Fix broken build.func [@havardthom](https://github.com/havardthom) ([#736](https://github.com/community-scripts/ProxmoxVE/pull/736)) +- Fix broken build.func [@havardthom](https://github.com/havardthom) ([#736](https://github.com/Dracentis/ProxmoxVe/pull/736)) ## 2024-12-06 @@ -850,16 +850,16 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Fix bugs in Komga update [@DysfunctionalProgramming](https://github.com/DysfunctionalProgramming) ([#717](https://github.com/community-scripts/ProxmoxVE/pull/717)) -- Bookstack: Fix Update function composer [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#700](https://github.com/community-scripts/ProxmoxVE/pull/700)) +- Fix bugs in Komga update [@DysfunctionalProgramming](https://github.com/DysfunctionalProgramming) ([#717](https://github.com/Dracentis/ProxmoxVe/pull/717)) +- Bookstack: Fix Update function composer [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#700](https://github.com/Dracentis/ProxmoxVe/pull/700)) ### 🌐 Website -- fix: note component in json-editor getting out of focus when typing and revert theme switch animation [@BramSuurdje](https://github.com/BramSuurdje) ([#706](https://github.com/community-scripts/ProxmoxVE/pull/706)) +- fix: note component in json-editor getting out of focus when typing and revert theme switch animation [@BramSuurdje](https://github.com/BramSuurdje) ([#706](https://github.com/Dracentis/ProxmoxVe/pull/706)) ### 🧰 Maintenance -- Update frontend CI/CD workflow [@havardthom](https://github.com/havardthom) ([#703](https://github.com/community-scripts/ProxmoxVE/pull/703)) +- Update frontend CI/CD workflow [@havardthom](https://github.com/havardthom) ([#703](https://github.com/Dracentis/ProxmoxVe/pull/703)) ## 2024-12-05 @@ -867,9 +867,9 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- PostgreSQL: Change authentication method from peer to md5 for UNIX sockets [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#650](https://github.com/community-scripts/ProxmoxVE/pull/650)) -- Fix stdout in unifi.sh [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#688](https://github.com/community-scripts/ProxmoxVE/pull/688)) -- Fix `rm` bug in Vikunja update [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#692](https://github.com/community-scripts/ProxmoxVE/pull/692)) +- PostgreSQL: Change authentication method from peer to md5 for UNIX sockets [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#650](https://github.com/Dracentis/ProxmoxVe/pull/650)) +- Fix stdout in unifi.sh [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#688](https://github.com/Dracentis/ProxmoxVe/pull/688)) +- Fix `rm` bug in Vikunja update [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#692](https://github.com/Dracentis/ProxmoxVe/pull/692)) ## 2024-12-04 @@ -877,11 +877,11 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Update Spelling 'Environment' in nginxproxymanager [@MathijsG](https://github.com/MathijsG) ([#676](https://github.com/community-scripts/ProxmoxVE/pull/676)) +- Update Spelling 'Environment' in nginxproxymanager [@MathijsG](https://github.com/MathijsG) ([#676](https://github.com/Dracentis/ProxmoxVe/pull/676)) ### 🌐 Website -- Update homepage.json documentation and website links [@patchmonkey](https://github.com/patchmonkey) ([#668](https://github.com/community-scripts/ProxmoxVE/pull/668)) +- Update homepage.json documentation and website links [@patchmonkey](https://github.com/patchmonkey) ([#668](https://github.com/Dracentis/ProxmoxVe/pull/668)) ## 2024-12-03 @@ -889,11 +889,11 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New Script: Onedev [@quantumryuu](https://github.com/quantumryuu) ([#612](https://github.com/community-scripts/ProxmoxVE/pull/612)) +- New Script: Onedev [@quantumryuu](https://github.com/quantumryuu) ([#612](https://github.com/Dracentis/ProxmoxVe/pull/612)) ### 🚀 Updated Scripts -- Script Update: SnipeIT [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#641](https://github.com/community-scripts/ProxmoxVE/pull/641)) +- Script Update: SnipeIT [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#641](https://github.com/Dracentis/ProxmoxVe/pull/641)) ## 2024-12-02 @@ -901,22 +901,22 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New Script: Hoarder LXC [@vhsdream](https://github.com/vhsdream) ([#567](https://github.com/community-scripts/ProxmoxVE/pull/567)) -- New script: SnipeIT LXC [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#538](https://github.com/community-scripts/ProxmoxVE/pull/538)) -- New Script: Glance [@quantumryuu](https://github.com/quantumryuu) ([#595](https://github.com/community-scripts/ProxmoxVE/pull/595)) -- New script: Unbound LXC [@wimb0](https://github.com/wimb0) ([#547](https://github.com/community-scripts/ProxmoxVE/pull/547)) -- New script: Mylar3 LXC [@davalanche](https://github.com/davalanche) ([#554](https://github.com/community-scripts/ProxmoxVE/pull/554)) +- New Script: Hoarder LXC [@vhsdream](https://github.com/vhsdream) ([#567](https://github.com/Dracentis/ProxmoxVe/pull/567)) +- New script: SnipeIT LXC [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#538](https://github.com/Dracentis/ProxmoxVe/pull/538)) +- New Script: Glance [@quantumryuu](https://github.com/quantumryuu) ([#595](https://github.com/Dracentis/ProxmoxVe/pull/595)) +- New script: Unbound LXC [@wimb0](https://github.com/wimb0) ([#547](https://github.com/Dracentis/ProxmoxVe/pull/547)) +- New script: Mylar3 LXC [@davalanche](https://github.com/davalanche) ([#554](https://github.com/Dracentis/ProxmoxVe/pull/554)) ### 🚀 Updated Scripts -- Stirling-PDF: replace dependency for v0.35.0 and add check and fix in stirling-pdf.sh [@vhsdream](https://github.com/vhsdream) ([#614](https://github.com/community-scripts/ProxmoxVE/pull/614)) -- qbittorrent: do not override the configuration port in systemd [@zdraganov](https://github.com/zdraganov) ([#618](https://github.com/community-scripts/ProxmoxVE/pull/618)) +- Stirling-PDF: replace dependency for v0.35.0 and add check and fix in stirling-pdf.sh [@vhsdream](https://github.com/vhsdream) ([#614](https://github.com/Dracentis/ProxmoxVe/pull/614)) +- qbittorrent: do not override the configuration port in systemd [@zdraganov](https://github.com/zdraganov) ([#618](https://github.com/Dracentis/ProxmoxVe/pull/618)) ### 🌐 Website -- chore: Update unbound logo to have only the actual logo [@BramSuurdje](https://github.com/BramSuurdje) ([#648](https://github.com/community-scripts/ProxmoxVE/pull/648)) -- fix: vaultwarden info mismatch [@BramSuurdje](https://github.com/BramSuurdje) ([#645](https://github.com/community-scripts/ProxmoxVE/pull/645)) -- Wallos json fix [@quantumryuu](https://github.com/quantumryuu) ([#630](https://github.com/community-scripts/ProxmoxVE/pull/630)) +- chore: Update unbound logo to have only the actual logo [@BramSuurdje](https://github.com/BramSuurdje) ([#648](https://github.com/Dracentis/ProxmoxVe/pull/648)) +- fix: vaultwarden info mismatch [@BramSuurdje](https://github.com/BramSuurdje) ([#645](https://github.com/Dracentis/ProxmoxVe/pull/645)) +- Wallos json fix [@quantumryuu](https://github.com/quantumryuu) ([#630](https://github.com/Dracentis/ProxmoxVe/pull/630)) ## 2024-11-30 @@ -924,11 +924,11 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Convert line endings in the-lounge.sh [@jamezpolley](https://github.com/jamezpolley) ([#599](https://github.com/community-scripts/ProxmoxVE/pull/599)) +- Convert line endings in the-lounge.sh [@jamezpolley](https://github.com/jamezpolley) ([#599](https://github.com/Dracentis/ProxmoxVe/pull/599)) ### 🌐 Website -- add some Information for Monitor-All Script [@MickLesk](https://github.com/MickLesk) ([#605](https://github.com/community-scripts/ProxmoxVE/pull/605)) +- add some Information for Monitor-All Script [@MickLesk](https://github.com/MickLesk) ([#605](https://github.com/Dracentis/ProxmoxVe/pull/605)) ## 2024-11-29 @@ -936,14 +936,14 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New Script: The Lounge IRC [@quantumryuu](https://github.com/quantumryuu) ([#571](https://github.com/community-scripts/ProxmoxVE/pull/571)) -- New Script: LubeLogger [@quantumryuu](https://github.com/quantumryuu) ([#574](https://github.com/community-scripts/ProxmoxVE/pull/574)) -- New Script: Inspircd [@quantumryuu](https://github.com/quantumryuu) ([#576](https://github.com/community-scripts/ProxmoxVE/pull/576)) +- New Script: The Lounge IRC [@quantumryuu](https://github.com/quantumryuu) ([#571](https://github.com/Dracentis/ProxmoxVe/pull/571)) +- New Script: LubeLogger [@quantumryuu](https://github.com/quantumryuu) ([#574](https://github.com/Dracentis/ProxmoxVe/pull/574)) +- New Script: Inspircd [@quantumryuu](https://github.com/quantumryuu) ([#576](https://github.com/Dracentis/ProxmoxVe/pull/576)) ### 🚀 Updated Scripts -- Fix msg_error on zwave-js-ui [@MickLesk](https://github.com/MickLesk) ([#585](https://github.com/community-scripts/ProxmoxVE/pull/585)) -- Fix Kimai Apache2 Rights [@MickLesk](https://github.com/MickLesk) ([#577](https://github.com/community-scripts/ProxmoxVE/pull/577)) +- Fix msg_error on zwave-js-ui [@MickLesk](https://github.com/MickLesk) ([#585](https://github.com/Dracentis/ProxmoxVe/pull/585)) +- Fix Kimai Apache2 Rights [@MickLesk](https://github.com/MickLesk) ([#577](https://github.com/Dracentis/ProxmoxVe/pull/577)) ## 2024-11-28 @@ -951,19 +951,19 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- Fix Z-Wave JS UI script [@MickLesk](https://github.com/MickLesk) ([#546](https://github.com/community-scripts/ProxmoxVE/pull/546)) - - [Migration guide](https://github.com/community-scripts/ProxmoxVE/discussions/635) +- Fix Z-Wave JS UI script [@MickLesk](https://github.com/MickLesk) ([#546](https://github.com/Dracentis/ProxmoxVe/pull/546)) + - [Migration guide](https://github.com/Dracentis/ProxmoxVe/discussions/635) ### 🚀 Updated Scripts -- Add vitest, add json validation tests, fix broken json files [@havardthom](https://github.com/havardthom) ([#566](https://github.com/community-scripts/ProxmoxVE/pull/566)) -- Add update script to Pocketbase [@dsiebel](https://github.com/dsiebel) ([#535](https://github.com/community-scripts/ProxmoxVE/pull/535)) -- Fix MongoDB install in Unifi script [@havardthom](https://github.com/havardthom) ([#564](https://github.com/community-scripts/ProxmoxVE/pull/564)) -- Remove changing DISK_REF for zfspool mikrotik-routeros.sh [@tjcomserv](https://github.com/tjcomserv) ([#529](https://github.com/community-scripts/ProxmoxVE/pull/529)) +- Add vitest, add json validation tests, fix broken json files [@havardthom](https://github.com/havardthom) ([#566](https://github.com/Dracentis/ProxmoxVe/pull/566)) +- Add update script to Pocketbase [@dsiebel](https://github.com/dsiebel) ([#535](https://github.com/Dracentis/ProxmoxVe/pull/535)) +- Fix MongoDB install in Unifi script [@havardthom](https://github.com/havardthom) ([#564](https://github.com/Dracentis/ProxmoxVe/pull/564)) +- Remove changing DISK_REF for zfspool mikrotik-routeros.sh [@tjcomserv](https://github.com/tjcomserv) ([#529](https://github.com/Dracentis/ProxmoxVe/pull/529)) ### 🌐 Website -- Show Changelog on Mobile Devices [@MickLesk](https://github.com/MickLesk) ([#558](https://github.com/community-scripts/ProxmoxVE/pull/558)) +- Show Changelog on Mobile Devices [@MickLesk](https://github.com/MickLesk) ([#558](https://github.com/Dracentis/ProxmoxVe/pull/558)) ## 2024-11-27 @@ -971,18 +971,18 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- Zabbix: Use Agent2 as Default | Update Script added | some other Improvements [@MickLesk](https://github.com/MickLesk) ([#527](https://github.com/community-scripts/ProxmoxVE/pull/527)) +- Zabbix: Use Agent2 as Default | Update Script added | some other Improvements [@MickLesk](https://github.com/MickLesk) ([#527](https://github.com/Dracentis/ProxmoxVe/pull/527)) ### 🚀 Updated Scripts -- Fix: install mosquitto from mosquitto repo [@dsiebel](https://github.com/dsiebel) ([#534](https://github.com/community-scripts/ProxmoxVE/pull/534)) -- Patch Netbird Script | Container Boot-Check | Debian/Ubuntu Only [@MickLesk](https://github.com/MickLesk) ([#528](https://github.com/community-scripts/ProxmoxVE/pull/528)) -- Install MongoDB 4.2 for non-AVX CPUs in Unifi LXC [@ColinOppenheim](https://github.com/ColinOppenheim) ([#319](https://github.com/community-scripts/ProxmoxVE/pull/319)) +- Fix: install mosquitto from mosquitto repo [@dsiebel](https://github.com/dsiebel) ([#534](https://github.com/Dracentis/ProxmoxVe/pull/534)) +- Patch Netbird Script | Container Boot-Check | Debian/Ubuntu Only [@MickLesk](https://github.com/MickLesk) ([#528](https://github.com/Dracentis/ProxmoxVe/pull/528)) +- Install MongoDB 4.2 for non-AVX CPUs in Unifi LXC [@ColinOppenheim](https://github.com/ColinOppenheim) ([#319](https://github.com/Dracentis/ProxmoxVe/pull/319)) ### 🌐 Website -- Fix json error in zabbix.json [@havardthom](https://github.com/havardthom) ([#543](https://github.com/community-scripts/ProxmoxVE/pull/543)) -- Fix another json error in add-netbird-lxc.json [@havardthom](https://github.com/havardthom) ([#545](https://github.com/community-scripts/ProxmoxVE/pull/545)) +- Fix json error in zabbix.json [@havardthom](https://github.com/havardthom) ([#543](https://github.com/Dracentis/ProxmoxVe/pull/543)) +- Fix another json error in add-netbird-lxc.json [@havardthom](https://github.com/havardthom) ([#545](https://github.com/Dracentis/ProxmoxVe/pull/545)) ## 2024-11-26 @@ -990,7 +990,7 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Fix Vikunja install script to prevent database deletion upon updating [@vhsdream](https://github.com/vhsdream) ([#524](https://github.com/community-scripts/ProxmoxVE/pull/524)) +- Fix Vikunja install script to prevent database deletion upon updating [@vhsdream](https://github.com/vhsdream) ([#524](https://github.com/Dracentis/ProxmoxVe/pull/524)) ## 2024-11-25 @@ -998,18 +998,18 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- Remove Scrypted script [@MickLesk](https://github.com/MickLesk) ([#511](https://github.com/community-scripts/ProxmoxVE/pull/511)) - - Because of request from Scrypted maintainer: [#494](https://github.com/community-scripts/ProxmoxVE/issues/494) +- Remove Scrypted script [@MickLesk](https://github.com/MickLesk) ([#511](https://github.com/Dracentis/ProxmoxVe/pull/511)) + - Because of request from Scrypted maintainer: [#494](https://github.com/Dracentis/ProxmoxVe/issues/494) - Official Scrypted script can be used instead: https://docs.scrypted.app/installation.html#proxmox-ve ### 🚀 Updated Scripts -- Fix bugs in Calibre-Web update [@havardthom](https://github.com/havardthom) ([#517](https://github.com/community-scripts/ProxmoxVE/pull/517)) -- Fix upload folder in listmonk LXC [@bvdberg01](https://github.com/bvdberg01) ([#515](https://github.com/community-scripts/ProxmoxVE/pull/515)) +- Fix bugs in Calibre-Web update [@havardthom](https://github.com/havardthom) ([#517](https://github.com/Dracentis/ProxmoxVe/pull/517)) +- Fix upload folder in listmonk LXC [@bvdberg01](https://github.com/bvdberg01) ([#515](https://github.com/Dracentis/ProxmoxVe/pull/515)) ### 🌐 Website -- Fix website url in Zoraxy documentation [@miggi92](https://github.com/miggi92) ([#506](https://github.com/community-scripts/ProxmoxVE/pull/506)) +- Fix website url in Zoraxy documentation [@miggi92](https://github.com/miggi92) ([#506](https://github.com/Dracentis/ProxmoxVe/pull/506)) ## 2024-11-24 @@ -1017,11 +1017,11 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- New script: listmonk LXC [@bvdberg01](https://github.com/bvdberg01) ([#442](https://github.com/community-scripts/ProxmoxVE/pull/442)) +- New script: listmonk LXC [@bvdberg01](https://github.com/bvdberg01) ([#442](https://github.com/Dracentis/ProxmoxVe/pull/442)) ### 🧰 Maintenance -- Add release title to github-release.yml [@havardthom](https://github.com/havardthom) ([#481](https://github.com/community-scripts/ProxmoxVE/pull/481)) +- Add release title to github-release.yml [@havardthom](https://github.com/havardthom) ([#481](https://github.com/Dracentis/ProxmoxVe/pull/481)) ## 2024-11-23 @@ -1029,20 +1029,20 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Fix Actual Budget install missing build tools [@cour64](https://github.com/cour64) ([#455](https://github.com/community-scripts/ProxmoxVE/pull/455)) -- Fix Vikunja Update [@MickLesk](https://github.com/MickLesk) ([#440](https://github.com/community-scripts/ProxmoxVE/pull/440)) -- Patch PostInstall-Script to PVE 8.3 | Add PVE 8.3 in Security [@MickLesk](https://github.com/MickLesk) ([#431](https://github.com/community-scripts/ProxmoxVE/pull/431)) +- Fix Actual Budget install missing build tools [@cour64](https://github.com/cour64) ([#455](https://github.com/Dracentis/ProxmoxVe/pull/455)) +- Fix Vikunja Update [@MickLesk](https://github.com/MickLesk) ([#440](https://github.com/Dracentis/ProxmoxVe/pull/440)) +- Patch PostInstall-Script to PVE 8.3 | Add PVE 8.3 in Security [@MickLesk](https://github.com/MickLesk) ([#431](https://github.com/Dracentis/ProxmoxVe/pull/431)) ### 🌐 Website -- Frontend: fix reported issue with json-editor page and add OS select in installmethod [@BramSuurdje](https://github.com/BramSuurdje) ([#426](https://github.com/community-scripts/ProxmoxVE/pull/426)) -- Fixed Typo [@BenBakDev](https://github.com/BenBakDev) ([#441](https://github.com/community-scripts/ProxmoxVE/pull/441)) +- Frontend: fix reported issue with json-editor page and add OS select in installmethod [@BramSuurdje](https://github.com/BramSuurdje) ([#426](https://github.com/Dracentis/ProxmoxVe/pull/426)) +- Fixed Typo [@BenBakDev](https://github.com/BenBakDev) ([#441](https://github.com/Dracentis/ProxmoxVe/pull/441)) ### 🧰 Maintenance -- Fix newline issue in changelog pr [@havardthom](https://github.com/havardthom) ([#474](https://github.com/community-scripts/ProxmoxVE/pull/474)) -- Remove newline in changelog-pr action [@havardthom](https://github.com/havardthom) ([#461](https://github.com/community-scripts/ProxmoxVE/pull/461)) -- Add action that creates github release based on CHANGELOG.md [@havardthom](https://github.com/havardthom) ([#462](https://github.com/community-scripts/ProxmoxVE/pull/462)) +- Fix newline issue in changelog pr [@havardthom](https://github.com/havardthom) ([#474](https://github.com/Dracentis/ProxmoxVe/pull/474)) +- Remove newline in changelog-pr action [@havardthom](https://github.com/havardthom) ([#461](https://github.com/Dracentis/ProxmoxVe/pull/461)) +- Add action that creates github release based on CHANGELOG.md [@havardthom](https://github.com/havardthom) ([#462](https://github.com/Dracentis/ProxmoxVe/pull/462)) ## 2024-11-21 @@ -1050,24 +1050,24 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- Add new LXC: NextPVR [@MickLesk](https://github.com/MickLesk) ([#391](https://github.com/community-scripts/ProxmoxVE/pull/391)) -- Add new LXC: Kimai [@MickLesk](https://github.com/MickLesk) ([#397](https://github.com/community-scripts/ProxmoxVE/pull/397)) +- Add new LXC: NextPVR [@MickLesk](https://github.com/MickLesk) ([#391](https://github.com/Dracentis/ProxmoxVe/pull/391)) +- Add new LXC: Kimai [@MickLesk](https://github.com/MickLesk) ([#397](https://github.com/Dracentis/ProxmoxVe/pull/397)) ### 🚀 Updated Scripts -- Add .env file support for HomeBox [@404invalid-user](https://github.com/404invalid-user) ([#383](https://github.com/community-scripts/ProxmoxVE/pull/383)) -- RDTClient Remove .NET 8.0 | Add .NET 9.0 [@MickLesk](https://github.com/MickLesk) ([#413](https://github.com/community-scripts/ProxmoxVE/pull/413)) -- Remove old resource message from vaultwarden [@havardthom](https://github.com/havardthom) ([#402](https://github.com/community-scripts/ProxmoxVE/pull/402)) +- Add .env file support for HomeBox [@404invalid-user](https://github.com/404invalid-user) ([#383](https://github.com/Dracentis/ProxmoxVe/pull/383)) +- RDTClient Remove .NET 8.0 | Add .NET 9.0 [@MickLesk](https://github.com/MickLesk) ([#413](https://github.com/Dracentis/ProxmoxVe/pull/413)) +- Remove old resource message from vaultwarden [@havardthom](https://github.com/havardthom) ([#402](https://github.com/Dracentis/ProxmoxVe/pull/402)) ### 🌐 Website -- Add PostInstall Documentation to zigbee2mqtt.json [@MickLesk](https://github.com/MickLesk) ([#411](https://github.com/community-scripts/ProxmoxVE/pull/411)) -- Fix incorrect hdd values in json files [@havardthom](https://github.com/havardthom) ([#403](https://github.com/community-scripts/ProxmoxVE/pull/403)) -- Website: Add discord link to navbar [@BramSuurdje](https://github.com/BramSuurdje) ([#405](https://github.com/community-scripts/ProxmoxVE/pull/405)) +- Add PostInstall Documentation to zigbee2mqtt.json [@MickLesk](https://github.com/MickLesk) ([#411](https://github.com/Dracentis/ProxmoxVe/pull/411)) +- Fix incorrect hdd values in json files [@havardthom](https://github.com/havardthom) ([#403](https://github.com/Dracentis/ProxmoxVe/pull/403)) +- Website: Add discord link to navbar [@BramSuurdje](https://github.com/BramSuurdje) ([#405](https://github.com/Dracentis/ProxmoxVe/pull/405)) ### 🧰 Maintenance -- Use github app in changelog-pr.yml and add auto approval [@havardthom](https://github.com/havardthom) ([#416](https://github.com/community-scripts/ProxmoxVE/pull/416)) +- Use github app in changelog-pr.yml and add auto approval [@havardthom](https://github.com/havardthom) ([#416](https://github.com/Dracentis/ProxmoxVe/pull/416)) ## 2024-11-20 @@ -1075,12 +1075,12 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- LinkWarden: Moved PATH into service [@newzealandpaul](https://github.com/newzealandpaul) ([#376](https://github.com/community-scripts/ProxmoxVE/pull/376)) +- LinkWarden: Moved PATH into service [@newzealandpaul](https://github.com/newzealandpaul) ([#376](https://github.com/Dracentis/ProxmoxVe/pull/376)) ### 🌐 Website -- Replace dash "-" with "/" in metadata [@newzealandpaul](https://github.com/newzealandpaul) ([#374](https://github.com/community-scripts/ProxmoxVE/pull/374)) -- Proxmox VE Cron LXC Updater: Add tteck's notes. [@newzealandpaul](https://github.com/newzealandpaul) ([#378](https://github.com/community-scripts/ProxmoxVE/pull/378)) +- Replace dash "-" with "/" in metadata [@newzealandpaul](https://github.com/newzealandpaul) ([#374](https://github.com/Dracentis/ProxmoxVe/pull/374)) +- Proxmox VE Cron LXC Updater: Add tteck's notes. [@newzealandpaul](https://github.com/newzealandpaul) ([#378](https://github.com/Dracentis/ProxmoxVe/pull/378)) ## 2024-11-19 @@ -1088,19 +1088,19 @@ Do not break established syntax in this file, as it is automatically updated by ### 🚀 Updated Scripts -- Fix Wallos Update [@MickLesk](https://github.com/MickLesk) ([#339](https://github.com/community-scripts/ProxmoxVE/pull/339)) -- Linkwarden: Move Secret Key above in install.sh [@MickLesk](https://github.com/MickLesk) ([#356](https://github.com/community-scripts/ProxmoxVE/pull/356)) -- Linkwarden: add gnupg to installed dependencies [@erfansamandarian](https://github.com/erfansamandarian) ([#349](https://github.com/community-scripts/ProxmoxVE/pull/349)) +- Fix Wallos Update [@MickLesk](https://github.com/MickLesk) ([#339](https://github.com/Dracentis/ProxmoxVe/pull/339)) +- Linkwarden: Move Secret Key above in install.sh [@MickLesk](https://github.com/MickLesk) ([#356](https://github.com/Dracentis/ProxmoxVe/pull/356)) +- Linkwarden: add gnupg to installed dependencies [@erfansamandarian](https://github.com/erfansamandarian) ([#349](https://github.com/Dracentis/ProxmoxVe/pull/349)) ### 🌐 Website -- Add *Arr Suite category for Website [@MickLesk](https://github.com/MickLesk) ([#370](https://github.com/community-scripts/ProxmoxVE/pull/370)) -- Refactor Buttons component to use a ButtonLink for cleaner code, simplifying the source URL generation and layout [@BramSuurdje](https://github.com/BramSuurdje) ([#371](https://github.com/community-scripts/ProxmoxVE/pull/371)) +- Add *Arr Suite category for Website [@MickLesk](https://github.com/MickLesk) ([#370](https://github.com/Dracentis/ProxmoxVe/pull/370)) +- Refactor Buttons component to use a ButtonLink for cleaner code, simplifying the source URL generation and layout [@BramSuurdje](https://github.com/BramSuurdje) ([#371](https://github.com/Dracentis/ProxmoxVe/pull/371)) ### 🧰 Maintenance -- [github]: add new Frontend_Report / Issue_Report & optimize config.yml [@MickLesk](https://github.com/MickLesk) ([#226](https://github.com/community-scripts/ProxmoxVE/pull/226)) -- [chore] Update FUNDING.yml [@MickLesk](https://github.com/MickLesk) ([#352](https://github.com/community-scripts/ProxmoxVE/pull/352)) +- [github]: add new Frontend_Report / Issue_Report & optimize config.yml [@MickLesk](https://github.com/MickLesk) ([#226](https://github.com/Dracentis/ProxmoxVe/pull/226)) +- [chore] Update FUNDING.yml [@MickLesk](https://github.com/MickLesk) ([#352](https://github.com/Dracentis/ProxmoxVe/pull/352)) ## 2024-11-18 @@ -1108,26 +1108,26 @@ Do not break established syntax in this file, as it is automatically updated by ### 💥 Breaking Changes -- Massive Update - Remove old storage check, add new storage and resource check to all scripts - Remove downscaling with pct set [@MickLesk](https://github.com/MickLesk) ([#333](https://github.com/community-scripts/ProxmoxVE/pull/333)) +- Massive Update - Remove old storage check, add new storage and resource check to all scripts - Remove downscaling with pct set [@MickLesk](https://github.com/MickLesk) ([#333](https://github.com/Dracentis/ProxmoxVe/pull/333)) ### ✨ New Scripts -- new scripts for NetBox [@bvdberg01](https://github.com/bvdberg01) ([#308](https://github.com/community-scripts/ProxmoxVE/pull/308)) +- new scripts for NetBox [@bvdberg01](https://github.com/bvdberg01) ([#308](https://github.com/Dracentis/ProxmoxVe/pull/308)) ### 🚀 Updated Scripts -- Support SSE 4.2 in Frigate script [@anishp55](https://github.com/anishp55) ([#328](https://github.com/community-scripts/ProxmoxVE/pull/328)) -- Bugfix: Wallos Patch (Cron Log & Media Backup) [@MickLesk](https://github.com/MickLesk) ([#331](https://github.com/community-scripts/ProxmoxVE/pull/331)) -- Linkwarden - Harmonize Script, Add Monolith & Bugfixing [@MickLesk](https://github.com/MickLesk) ([#306](https://github.com/community-scripts/ProxmoxVE/pull/306)) -- Fix optional installs in Cockpit LXC [@havardthom](https://github.com/havardthom) ([#317](https://github.com/community-scripts/ProxmoxVE/pull/317)) +- Support SSE 4.2 in Frigate script [@anishp55](https://github.com/anishp55) ([#328](https://github.com/Dracentis/ProxmoxVe/pull/328)) +- Bugfix: Wallos Patch (Cron Log & Media Backup) [@MickLesk](https://github.com/MickLesk) ([#331](https://github.com/Dracentis/ProxmoxVe/pull/331)) +- Linkwarden - Harmonize Script, Add Monolith & Bugfixing [@MickLesk](https://github.com/MickLesk) ([#306](https://github.com/Dracentis/ProxmoxVe/pull/306)) +- Fix optional installs in Cockpit LXC [@havardthom](https://github.com/havardthom) ([#317](https://github.com/Dracentis/ProxmoxVe/pull/317)) ### 🌐 Website -- Added additional instructions to nginxproxymanager [@newzealandpaul](https://github.com/newzealandpaul) ([#329](https://github.com/community-scripts/ProxmoxVE/pull/329)) +- Added additional instructions to nginxproxymanager [@newzealandpaul](https://github.com/newzealandpaul) ([#329](https://github.com/Dracentis/ProxmoxVe/pull/329)) ### 🧰 Maintenance -- Verify changes before commit in changelog-pr.yml [@havardthom](https://github.com/havardthom) ([#310](https://github.com/community-scripts/ProxmoxVE/pull/310)) +- Verify changes before commit in changelog-pr.yml [@havardthom](https://github.com/havardthom) ([#310](https://github.com/Dracentis/ProxmoxVe/pull/310)) ## 2024-11-17 @@ -1135,32 +1135,32 @@ Do not break established syntax in this file, as it is automatically updated by ### ✨ New Scripts -- Add Komga LXC [@DysfunctionalProgramming](https://github.com/DysfunctionalProgramming) ([#275](https://github.com/community-scripts/ProxmoxVE/pull/275)) +- Add Komga LXC [@DysfunctionalProgramming](https://github.com/DysfunctionalProgramming) ([#275](https://github.com/Dracentis/ProxmoxVe/pull/275)) ### 🚀 Updated Scripts -- Tweak: Patch Prometheus for v.3.0.0 [@MickLesk](https://github.com/MickLesk) ([#300](https://github.com/community-scripts/ProxmoxVE/pull/300)) -- Wavelog - Small Adjustment [@HB9HIL](https://github.com/HB9HIL) ([#292](https://github.com/community-scripts/ProxmoxVE/pull/292)) +- Tweak: Patch Prometheus for v.3.0.0 [@MickLesk](https://github.com/MickLesk) ([#300](https://github.com/Dracentis/ProxmoxVe/pull/300)) +- Wavelog - Small Adjustment [@HB9HIL](https://github.com/HB9HIL) ([#292](https://github.com/Dracentis/ProxmoxVe/pull/292)) ### 🌐 Website -- Add Note for Komga Installation (Website) [@MickLesk](https://github.com/MickLesk) ([#303](https://github.com/community-scripts/ProxmoxVE/pull/303)) -- Fix Komga logo [@havardthom](https://github.com/havardthom) ([#298](https://github.com/community-scripts/ProxmoxVE/pull/298)) +- Add Note for Komga Installation (Website) [@MickLesk](https://github.com/MickLesk) ([#303](https://github.com/Dracentis/ProxmoxVe/pull/303)) +- Fix Komga logo [@havardthom](https://github.com/havardthom) ([#298](https://github.com/Dracentis/ProxmoxVe/pull/298)) ### 🧰 Maintenance -- Add github workflow for automatic changelog PR [@havardthom](https://github.com/havardthom) ([#299](https://github.com/community-scripts/ProxmoxVE/pull/299)) -- Use website label in autolabeler [@havardthom](https://github.com/havardthom) ([#297](https://github.com/community-scripts/ProxmoxVE/pull/297)) +- Add github workflow for automatic changelog PR [@havardthom](https://github.com/havardthom) ([#299](https://github.com/Dracentis/ProxmoxVe/pull/299)) +- Use website label in autolabeler [@havardthom](https://github.com/havardthom) ([#297](https://github.com/Dracentis/ProxmoxVe/pull/297)) ## 2024-11-16 ### Changed -- **Recyclarr LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/recyclarr-install.sh) +- **Recyclarr LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/recyclarr-install.sh) - NEW Script -- **Wavelog LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/wavelog-install.sh) +- **Wavelog LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/wavelog-install.sh) - NEW Script -- **Vaultwarden LXC:** RAM has now been increased to 6144 MB [(PR)](https://github.com/community-scripts/ProxmoxVE/pull/285) +- **Vaultwarden LXC:** RAM has now been increased to 6144 MB [(PR)](https://github.com/Dracentis/ProxmoxVe/pull/285) - Breaking Change @@ -1168,9 +1168,9 @@ Do not break established syntax in this file, as it is automatically updated by ### Changed -- **Bookstack LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/bookstack-install.sh) +- **Bookstack LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/bookstack-install.sh) - NEW Script -- **Vikunja LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/vikunja-install.sh) +- **Vikunja LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/vikunja-install.sh) - NEW Script ## 2024-11-04 @@ -1179,36 +1179,36 @@ Do not break established syntax in this file, as it is automatically updated by - **Automatic Update of Repository:** The update function now uses the new repository `community-scripts/ProxmoxVE` for Debian/Ubuntu LXC containers. ```bash - bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/update-repo.sh)" + bash -c "$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/update-repo.sh)" ## 2024-10-31 ### Changed -- **NZBGet LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/nzbget-install.sh) +- **NZBGet LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/nzbget-install.sh) - NEW Script -- **Memos LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/memos-install.sh) +- **Memos LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/memos-install.sh) - NEW Script ## 2024-10-27 ### Changed -- **Open WebUI LXC** [(Commit)](https://github.com/community-scripts/ProxmoxVE/commit/8a21f6e7f025a911865395d4c0fa9a001bd0d512) +- **Open WebUI LXC** [(Commit)](https://github.com/Dracentis/ProxmoxVe/commit/8a21f6e7f025a911865395d4c0fa9a001bd0d512) - Refactor Script to add an option to install Ollama. ## 2024-10-26 ### Changed -- **AdventureLog LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/adventurelog-install.sh) +- **AdventureLog LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/adventurelog-install.sh) - NEW Script ## 2024-10-25 ### Changed -- **Zoraxy LXC** [(Commit)](https://github.com/community-scripts/ProxmoxVE/commit/468a5d367ded4cf453a1507452e112ac3e234e2a) +- **Zoraxy LXC** [(Commit)](https://github.com/Dracentis/ProxmoxVe/commit/468a5d367ded4cf453a1507452e112ac3e234e2a) - Switch built from source to a pre-compiled binary version. - Breaking Change @@ -1216,41 +1216,41 @@ Do not break established syntax in this file, as it is automatically updated by ### Changed -- **Wallos LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/wallos-install.sh) +- **Wallos LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/wallos-install.sh) - NEW Script -- **Open WebUI LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/openwebui-install.sh) +- **Open WebUI LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/openwebui-install.sh) - NEW Script ## 2024-10-19 ### Changed -- **Cockpit LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/cockpit-install.sh) +- **Cockpit LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/cockpit-install.sh) - NEW Script -- **Neo4j LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/neo4j-install.sh) +- **Neo4j LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/neo4j-install.sh) - NEW Script ## 2024-10-18 ### Changed -- **ArchiveBox LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/archivebox-install.sh) +- **ArchiveBox LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/archivebox-install.sh) - NEW Script ## 2024-10-15 ### Changed -- **evcc LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/evcc-install.sh) +- **evcc LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/evcc-install.sh) - NEW Script ## 2024-10-10 ### Changed -- **MySQL LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/mysql-install.sh) +- **MySQL LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/mysql-install.sh) - NEW Script -- **Tianji LXC** [(Commit)](https://github.com/community-scripts/ProxmoxVE/commit/4c83a790ac9b040da1f11ad2cbe13d3fc5f480e9) +- **Tianji LXC** [(Commit)](https://github.com/Dracentis/ProxmoxVe/commit/4c83a790ac9b040da1f11ad2cbe13d3fc5f480e9) - Breaking Change - Switch from `pm2` process management to `systemd` @@ -1258,7 +1258,7 @@ Do not break established syntax in this file, as it is automatically updated by ### Changed -- **Home Assistant Core LXC** [(Commit)](https://github.com/community-scripts/ProxmoxVE/commit/f2937febe69b2bad8b3a14eb84aa562a8f14cc6a) [(Commit)](https://github.com/community-scripts/ProxmoxVE/commit/f2966ced7f457fd506f865f7f5b70ea12c4b0049) +- **Home Assistant Core LXC** [(Commit)](https://github.com/Dracentis/ProxmoxVe/commit/f2937febe69b2bad8b3a14eb84aa562a8f14cc6a) [(Commit)](https://github.com/Dracentis/ProxmoxVe/commit/f2966ced7f457fd506f865f7f5b70ea12c4b0049) - Refactor Code - Breaking Change - Home Assistant has transitioned to using `uv` for managing the virtual environment and installing additional modules. @@ -1267,23 +1267,23 @@ Do not break established syntax in this file, as it is automatically updated by ### Changed -- **HomeBox LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/homebox-install.sh) +- **HomeBox LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/homebox-install.sh) - NEW Script -- **Zipline LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/zipline-install.sh) +- **Zipline LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/zipline-install.sh) - NEW Script ## 2024-09-13 ### Changed -- **Tianji LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/tianji-install.sh) +- **Tianji LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/tianji-install.sh) - NEW Script ## 2024-08-21 ### Changed -- **WireGuard LXC** [(Commit)](https://github.com/community-scripts/ProxmoxVE/commit/723365a79df7cc0fd29b1af8f7ef200a7e0921b1) +- **WireGuard LXC** [(Commit)](https://github.com/Dracentis/ProxmoxVe/commit/723365a79df7cc0fd29b1af8f7ef200a7e0921b1) - Refactor Code - Breaking Change @@ -1291,7 +1291,7 @@ Do not break established syntax in this file, as it is automatically updated by ### Changed -- **CommaFeed LXC** [(Commit)](https://github.com/community-scripts/ProxmoxVE/commit/0a33d1739ec3a49011411929bd46a260e92e99f9) +- **CommaFeed LXC** [(Commit)](https://github.com/Dracentis/ProxmoxVe/commit/0a33d1739ec3a49011411929bd46a260e92e99f9) - Refactor Code - Breaking Change @@ -1299,30 +1299,30 @@ Do not break established syntax in this file, as it is automatically updated by ### Changed -- **lldap LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/lldap-install.sh) +- **lldap LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/lldap-install.sh) - NEW Script ## 2024-07-26 ### Changed -- **Gitea LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/gitea-install.sh) +- **Gitea LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/gitea-install.sh) - NEW Script ## 2024-06-30 ### Changed -- **All Scripts** [(Commit)](https://github.com/community-scripts/ProxmoxVE/commit/39ea1d4a20b83c07d084ebafdc811eec3548f289) +- **All Scripts** [(Commit)](https://github.com/Dracentis/ProxmoxVe/commit/39ea1d4a20b83c07d084ebafdc811eec3548f289) - Requires Proxmox Virtual Environment version 8.1 or later. ## 2024-06-27 ### Changed -- **Kubo LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/kubo-install.sh) +- **Kubo LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/kubo-install.sh) - NEW Script -- **RabbitMQ LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/rabbitmq-install.sh) +- **RabbitMQ LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/rabbitmq-install.sh) - NEW Script - **Scrutiny LXC** - Removed from website, broken. @@ -1338,27 +1338,27 @@ Do not break established syntax in this file, as it is automatically updated by ### Changed -- **MySpeed LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/myspeed-install.sh) +- **MySpeed LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/myspeed-install.sh) - NEW Script ## 2024-06-13 ### Changed -- **PeaNUT LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/peanut-install.sh) +- **PeaNUT LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/peanut-install.sh) - NEW Script - **Website** - If the Changelog has changed recently, the link on the website will pulse. -- **Spoolman LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/spoolman-install.sh) +- **Spoolman LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/spoolman-install.sh) - NEW Script ## 2024-06-12 ### Changed -- **MeTube LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/metube-install.sh) +- **MeTube LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/metube-install.sh) - NEW Script -- **Matterbridge LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/matterbridge-install.sh) +- **Matterbridge LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/matterbridge-install.sh) - NEW Script - **Website** - Reopen the gh-pages site (https://tteck.github.io/Proxmox/) @@ -1367,14 +1367,14 @@ Do not break established syntax in this file, as it is automatically updated by ### Changed -- **Zabbix LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/zabbix-install.sh) +- **Zabbix LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/zabbix-install.sh) - NEW Script ## 2024-06-06 ### Changed -- **Petio LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/petio-install.sh) +- **Petio LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/petio-install.sh) - NEW Script - **Website** - Important notices will now be displayed on the landing page. @@ -1383,14 +1383,14 @@ Do not break established syntax in this file, as it is automatically updated by ### Changed -- **FlareSolverr LXC** [(View Source)](https://github.com/community-scripts/ProxmoxVE/blob/main/install/flaresolverr-install.sh) +- **FlareSolverr LXC** [(View Source)](https://github.com/Dracentis/ProxmoxVe/blob/main/install/flaresolverr-install.sh) - NEW Script ## 2024-05-31 ### Changed -- **Advanced Settings** [(Commit)](https://github.com/community-scripts/ProxmoxVE/commit/fc9dff220b4ea426d3a75178ad8accacae4683ca) +- **Advanced Settings** [(Commit)](https://github.com/Dracentis/ProxmoxVe/commit/fc9dff220b4ea426d3a75178ad8accacae4683ca) - Passwords are now masked ## 2024-05-30 @@ -2218,7 +2218,7 @@ Do not break established syntax in this file, as it is automatically updated by ### Changed - **Proxmox VE Monitor-All** - - Skip instances based on onboot and templates. [8c2a3cc](https://github.com/community-scripts/ProxmoxVE/commit/8c2a3cc4d774fa13d17f695d6bdf9a4deedb1372). + - Skip instances based on onboot and templates. [8c2a3cc](https://github.com/Dracentis/ProxmoxVe/commit/8c2a3cc4d774fa13d17f695d6bdf9a4deedb1372). ## 2023-06-12 @@ -2354,7 +2354,7 @@ Do not break established syntax in this file, as it is automatically updated by - **InfluxDB LXC** - Choosing InfluxDB v1 will result in Chronograf being installed automatically. -- **[User Submitted Guides](https://github.com/community-scripts/ProxmoxVE/blob/main/USER_SUBMITTED_GUIDES.md)** +- **[User Submitted Guides](https://github.com/Dracentis/ProxmoxVe/blob/main/USER_SUBMITTED_GUIDES.md)** - Informative guides that demonstrate how to install various software packages using Proxmox VE Helper Scripts. ## 2023-04-14 @@ -2748,7 +2748,7 @@ Do not break established syntax in this file, as it is automatically updated by ### Changed - **Proxmox LXC Updater** - - Now updates Ubuntu, Debian, Devuan, Alpine Linux, CentOS-Rocky-Alma, Fedora, ArchLinux [(@Uruknara)](https://github.com/community-scripts/ProxmoxVE/commits?author=Uruknara) + - Now updates Ubuntu, Debian, Devuan, Alpine Linux, CentOS-Rocky-Alma, Fedora, ArchLinux [(@Uruknara)](https://github.com/Dracentis/ProxmoxVe/commits?author=Uruknara) ## 2022-11-13 diff --git a/CODE-AUDIT.md b/CODE-AUDIT.md index 158a5c6ce..0d6033c81 100644 --- a/CODE-AUDIT.md +++ b/CODE-AUDIT.md @@ -1,14 +1,14 @@
- +

Exploring the Scripts and Steps Involved in an Application LXC Installation

-1) [adguard.sh](https://github.com/community-scripts/ProxmoxVE/blob/main/ct/adguard.sh): This script collects system parameters. (Also holds the function to update the application.) -2) [build.func](https://github.com/community-scripts/ProxmoxVE/blob/main/misc/build.func): Adds user settings and integrates collected information. -3) [create_lxc.sh](https://github.com/community-scripts/ProxmoxVE/blob/main/ct/create_lxc.sh): Constructs the LXC container. -4) [adguard-install.sh](https://github.com/community-scripts/ProxmoxVE/blob/main/install/adguard-install.sh): Executes functions from [install.func](https://github.com/community-scripts/ProxmoxVE/blob/main/misc/install.func), and installs the application. -5) [adguard.sh](https://github.com/community-scripts/ProxmoxVE/blob/main/ct/adguard.sh) (again): To display the completion message. +1) [adguard.sh](https://github.com/Dracentis/ProxmoxVe/blob/main/ct/adguard.sh): This script collects system parameters. (Also holds the function to update the application.) +2) [build.func](https://github.com/Dracentis/ProxmoxVe/blob/main/misc/build.func): Adds user settings and integrates collected information. +3) [create_lxc.sh](https://github.com/Dracentis/ProxmoxVe/blob/main/ct/create_lxc.sh): Constructs the LXC container. +4) [adguard-install.sh](https://github.com/Dracentis/ProxmoxVe/blob/main/install/adguard-install.sh): Executes functions from [install.func](https://github.com/Dracentis/ProxmoxVe/blob/main/misc/install.func), and installs the application. +5) [adguard.sh](https://github.com/Dracentis/ProxmoxVe/blob/main/ct/adguard.sh) (again): To display the completion message. -The installation process uses reusable scripts: [build.func](https://github.com/community-scripts/ProxmoxVE/blob/main/misc/build.func), [create_lxc.sh](https://github.com/community-scripts/ProxmoxVE/blob/main/ct/create_lxc.sh), and [install.func](https://github.com/community-scripts/ProxmoxVE/blob/main/misc/install.func), which are not specific to any particular application. +The installation process uses reusable scripts: [build.func](https://github.com/Dracentis/ProxmoxVe/blob/main/misc/build.func), [create_lxc.sh](https://github.com/Dracentis/ProxmoxVe/blob/main/ct/create_lxc.sh), and [install.func](https://github.com/Dracentis/ProxmoxVe/blob/main/misc/install.func), which are not specific to any particular application. -To gain a better understanding, focus on reviewing [adguard-install.sh](https://github.com/community-scripts/ProxmoxVE/blob/main/install/adguard-install.sh). This script contains the commands and configurations for installing and configuring AdGuard Home within the LXC container. +To gain a better understanding, focus on reviewing [adguard-install.sh](https://github.com/Dracentis/ProxmoxVe/blob/main/install/adguard-install.sh). This script contains the commands and configurations for installing and configuring AdGuard Home within the LXC container. diff --git a/README.md b/README.md index 1bd2931b7..c45da8089 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

- +

@@ -19,13 +19,13 @@ Donate - + Contribute - + Guides - + Changelog

@@ -83,11 +83,11 @@ We appreciate any contributions to the project—whether it's bug reports, featu Join our community for support: - **Discord**: Join our [Proxmox Helper Scripts Discord server](https://discord.gg/UHrpNWGwkH) for real-time support. -- **GitHub Discussions**: [Ask questions or report issues](https://github.com/community-scripts/ProxmoxVE/discussions). +- **GitHub Discussions**: [Ask questions or report issues](https://github.com/Dracentis/ProxmoxVe/discussions). ## 🤝 Report a Bug or Feature Request -If you encounter any issues or have suggestions for improvement, file a new issue on our [GitHub issues page](https://github.com/community-scripts/ProxmoxVE/issues). You can also submit pull requests with solutions or enhancements! +If you encounter any issues or have suggestions for improvement, file a new issue on our [GitHub issues page](https://github.com/Dracentis/ProxmoxVe/issues). You can also submit pull requests with solutions or enhancements! --- diff --git a/USER_SUBMITTED_GUIDES.md b/USER_SUBMITTED_GUIDES.md index 795993950..e345b5f30 100644 --- a/USER_SUBMITTED_GUIDES.md +++ b/USER_SUBMITTED_GUIDES.md @@ -1,6 +1,6 @@
- +

User Submitted Guides

diff --git a/ct/2fauth.sh b/ct/2fauth.sh index 3ef44999c..8cb6fdc07 100644 --- a/ct/2fauth.sh +++ b/ct/2fauth.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: jkrgr0 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://docs.2fauth.app/ # App Default Values @@ -87,4 +87,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:80${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:80${CL}" diff --git a/ct/5etools.sh b/ct/5etools.sh index 177cdfa49..ca20c5169 100644 --- a/ct/5etools.sh +++ b/ct/5etools.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: TheRealVira -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://5e.tools/ # App Default Values diff --git a/ct/actualbudget.sh b/ct/actualbudget.sh index c6895d6b3..0bc8a0068 100644 --- a/ct/actualbudget.sh +++ b/ct/actualbudget.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://actualbudget.org/ # App Default Values diff --git a/ct/adguard.sh b/ct/adguard.sh index d4d94f593..82eb5f6f6 100644 --- a/ct/adguard.sh +++ b/ct/adguard.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://adguard.com/ # App Default Values diff --git a/ct/adventurelog.sh b/ct/adventurelog.sh index 463762f48..901512f2d 100644 --- a/ct/adventurelog.sh +++ b/ct/adventurelog.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://adventurelog.app/ # App Default Values diff --git a/ct/agentdvr.sh b/ct/agentdvr.sh index 2e5cda1b7..add5a6286 100644 --- a/ct/agentdvr.sh +++ b/ct/agentdvr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.ispyconnect.com/ # App Default Values @@ -43,4 +43,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8090${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8090${CL}" diff --git a/ct/alpine-docker.sh b/ct/alpine-docker.sh index 42799442e..1a67c089d 100644 --- a/ct/alpine-docker.sh +++ b/ct/alpine-docker.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # App Default Values APP="Alpine-Docker" diff --git a/ct/alpine-grafana.sh b/ct/alpine-grafana.sh index 4c7b7d3f8..26c5686d8 100644 --- a/ct/alpine-grafana.sh +++ b/ct/alpine-grafana.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # App Default Values APP="Alpine-Grafana" diff --git a/ct/alpine-nextcloud.sh b/ct/alpine-nextcloud.sh index 74e54bb90..b3361440c 100644 --- a/ct/alpine-nextcloud.sh +++ b/ct/alpine-nextcloud.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # App Default Values APP="Alpine-Nextcloud" diff --git a/ct/alpine-vaultwarden.sh b/ct/alpine-vaultwarden.sh index bd701d4ef..e0fe284d0 100644 --- a/ct/alpine-vaultwarden.sh +++ b/ct/alpine-vaultwarden.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # App Default Values APP="Alpine-Vaultwarden" diff --git a/ct/alpine-zigbee2mqtt.sh b/ct/alpine-zigbee2mqtt.sh index 9f251b110..7a1b13aca 100644 --- a/ct/alpine-zigbee2mqtt.sh +++ b/ct/alpine-zigbee2mqtt.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # App Default Values APP="Alpine-Zigbee2MQTT" diff --git a/ct/alpine.sh b/ct/alpine.sh index 2cde457c5..e3ab77f58 100644 --- a/ct/alpine.sh +++ b/ct/alpine.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # App Default Values APP="Alpine" diff --git a/ct/apache-cassandra.sh b/ct/apache-cassandra.sh index 8e1270291..faf7c71ec 100644 --- a/ct/apache-cassandra.sh +++ b/ct/apache-cassandra.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://cassandra.apache.org/_/index.html # App Default Values @@ -42,4 +42,4 @@ build_container description msg_ok "Completed Successfully!\n" -echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" \ No newline at end of file +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" diff --git a/ct/apache-couchdb.sh b/ct/apache-couchdb.sh index 9df39570f..3b19fc88c 100644 --- a/ct/apache-couchdb.sh +++ b/ct/apache-couchdb.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://couchdb.apache.org/ # App Default Values diff --git a/ct/apache-guacamole.sh b/ct/apache-guacamole.sh index 35a2fceaf..f2c105c68 100644 --- a/ct/apache-guacamole.sh +++ b/ct/apache-guacamole.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/refs/heads/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/refs/heads/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Michel Roegl-Brunner (michelroegl-brunner) -# License: | MIT https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: | MIT https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://guacamole.apache.org/ #App Default Values diff --git a/ct/apt-cacher-ng.sh b/ct/apt-cacher-ng.sh index d8b85dd63..dd811a72e 100644 --- a/ct/apt-cacher-ng.sh +++ b/ct/apt-cacher-ng.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://wiki.debian.org/AptCacherNg # App Default Values diff --git a/ct/archivebox.sh b/ct/archivebox.sh index 1fd6f0980..b19fa1668 100644 --- a/ct/archivebox.sh +++ b/ct/archivebox.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://archivebox.io/ # App Default Values diff --git a/ct/aria2.sh b/ct/aria2.sh index 366d7279a..421daa098 100644 --- a/ct/aria2.sh +++ b/ct/aria2.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://aria2.github.io/ # App Default Values diff --git a/ct/audiobookshelf.sh b/ct/audiobookshelf.sh index ccb1cac6b..0b06a51c4 100644 --- a/ct/audiobookshelf.sh +++ b/ct/audiobookshelf.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.audiobookshelf.org/ # App Default Values diff --git a/ct/authentik.sh b/ct/authentik.sh index 3f1a39ab3..ebb228b9a 100644 --- a/ct/authentik.sh +++ b/ct/authentik.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: remz1337 # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # App Default Values APP="Authentik" diff --git a/ct/autobrr.sh b/ct/autobrr.sh index 383f81df7..9f64cc25b 100644 --- a/ct/autobrr.sh +++ b/ct/autobrr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://autobrr.com/ # App Default Values @@ -57,4 +57,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7474${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7474${CL}" diff --git a/ct/bazarr.sh b/ct/bazarr.sh index 698344b2d..6af77c34f 100755 --- a/ct/bazarr.sh +++ b/ct/bazarr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.bazarr.media/ # App Default Values @@ -43,4 +43,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6767${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6767${CL}" diff --git a/ct/beszel.sh b/ct/beszel.sh index b0b87e1d8..2227c1a36 100644 --- a/ct/beszel.sh +++ b/ct/beszel.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) community-scripts ORG # Author: Michelle Zitzerman (Sinofage) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://beszel.dev/ # App Default Values diff --git a/ct/blocky.sh b/ct/blocky.sh index dd1309acc..8c0d9dd5d 100644 --- a/ct/blocky.sh +++ b/ct/blocky.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://0xerr0r.github.io/blocky/latest/ # App Default Values @@ -43,4 +43,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:4000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:4000${CL}" diff --git a/ct/bookstack.sh b/ct/bookstack.sh index 6b5f5c873..f09c22c18 100644 --- a/ct/bookstack.sh +++ b/ct/bookstack.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/BookStackApp/BookStack # App Default Values diff --git a/ct/bunkerweb.sh b/ct/bunkerweb.sh index d539cc5fe..37059b6f7 100644 --- a/ct/bunkerweb.sh +++ b/ct/bunkerweb.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.bunkerweb.io/ # App Default Values @@ -57,4 +57,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/setup${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/setup${CL}" diff --git a/ct/caddy.sh b/ct/caddy.sh index 96246a79c..669207249 100644 --- a/ct/caddy.sh +++ b/ct/caddy.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://caddyserver.com/ # App Default Values diff --git a/ct/calibre-web.sh b/ct/calibre-web.sh index 3980f37ac..8595495f1 100644 --- a/ct/calibre-web.sh +++ b/ct/calibre-web.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) | Co-Author: remz1337 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/janeczku/calibre-web # App Default Values diff --git a/ct/casaos.sh b/ct/casaos.sh index 76e226a0b..2634a2989 100644 --- a/ct/casaos.sh +++ b/ct/casaos.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://casaos.io/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/changedetection.sh b/ct/changedetection.sh index a6075cf24..88b4d5b9e 100644 --- a/ct/changedetection.sh +++ b/ct/changedetection.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://changedetection.io/ # App Default Values diff --git a/ct/channels.sh b/ct/channels.sh index d7f23d366..dafb5cb1b 100644 --- a/ct/channels.sh +++ b/ct/channels.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://getchannels.com/dvr-server/ # App Default Values @@ -43,4 +43,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8089${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8089${CL}" diff --git a/ct/checkmk.sh b/ct/checkmk.sh index f1f930b8e..ee7c87950 100644 --- a/ct/checkmk.sh +++ b/ct/checkmk.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Michel Roegl-Brunner (michelroegl-brunner) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://checkmk.com/ APP="checkmk" diff --git a/ct/cloudflared.sh b/ct/cloudflared.sh index 16f8d6254..bbad14f6c 100644 --- a/ct/cloudflared.sh +++ b/ct/cloudflared.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.cloudflare.com/ # App Default Values @@ -44,4 +44,4 @@ build_container description msg_ok "Completed Successfully!\n" -echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" \ No newline at end of file +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" diff --git a/ct/cockpit.sh b/ct/cockpit.sh index 266d36219..ecc949d6d 100644 --- a/ct/cockpit.sh +++ b/ct/cockpit.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck | Co-Author: havardthom -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://cockpit-project.org/ # App Default Values @@ -96,4 +96,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9090${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9090${CL}" diff --git a/ct/commafeed.sh b/ct/commafeed.sh index 4d5d29947..2d695be64 100644 --- a/ct/commafeed.sh +++ b/ct/commafeed.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.commafeed.com/#/welcome # App Default Values diff --git a/ct/create_lxc.sh b/ct/create_lxc.sh index 6d55fd17c..3eb2dcfa9 100644 --- a/ct/create_lxc.sh +++ b/ct/create_lxc.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Co-Author: MickLesk # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # This sets verbose mode if the global variable is set to "yes" # if [ "$VERBOSE" == "yes" ]; then set -x; fi diff --git a/ct/cronicle.sh b/ct/cronicle.sh index 19f3454e2..c6519bc6f 100644 --- a/ct/cronicle.sh +++ b/ct/cronicle.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://cronicle.net/ # App Default Values @@ -105,4 +105,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3012${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3012${CL}" diff --git a/ct/daemonsync.sh b/ct/daemonsync.sh index 1d9b31375..2ec008dde 100644 --- a/ct/daemonsync.sh +++ b/ct/daemonsync.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://daemonsync.me/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8084${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8084${CL}" diff --git a/ct/dashy.sh b/ct/dashy.sh index 9f9c77aa6..b0c409955 100644 --- a/ct/dashy.sh +++ b/ct/dashy.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://dashy.to/ # App Default Values @@ -84,4 +84,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:4000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:4000${CL}" diff --git a/ct/debian.sh b/ct/debian.sh index fd5dae410..3cc0b7cd3 100644 --- a/ct/debian.sh +++ b/ct/debian.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.debian.org/ # App Default Values @@ -44,4 +44,4 @@ build_container description msg_ok "Completed Successfully!\n" -echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" \ No newline at end of file +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" diff --git a/ct/deconz.sh b/ct/deconz.sh index e8233a595..48c874042 100644 --- a/ct/deconz.sh +++ b/ct/deconz.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.phoscon.de/en/conbee2/software#deconz # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/deluge.sh b/ct/deluge.sh index 1f80e8db1..e404795d2 100644 --- a/ct/deluge.sh +++ b/ct/deluge.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.deluge-torrent.org/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8112${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8112${CL}" diff --git a/ct/docker.sh b/ct/docker.sh index 5af992b23..86f0add20 100644 --- a/ct/docker.sh +++ b/ct/docker.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.docker.com/ # App Default Values @@ -44,4 +44,4 @@ build_container description msg_ok "Completed Successfully!\n" -echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" \ No newline at end of file +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" diff --git a/ct/dockge.sh b/ct/dockge.sh index 8f5fd9d2e..e9328d03f 100644 --- a/ct/dockge.sh +++ b/ct/dockge.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://dockge.kuma.pet/ # App Default Values @@ -47,4 +47,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5001${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5001${CL}" diff --git a/ct/dotnetaspwebapi.sh b/ct/dotnetaspwebapi.sh index faf86d296..86412f192 100644 --- a/ct/dotnetaspwebapi.sh +++ b/ct/dotnetaspwebapi.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Kristian Skov -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-nginx?view=aspnetcore-9.0&tabs=linux-ubuntu # App Default Values diff --git a/ct/emby.sh b/ct/emby.sh index 364fb1663..eebc65312 100644 --- a/ct/emby.sh +++ b/ct/emby.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://emby.media/ # App Default Values diff --git a/ct/emqx.sh b/ct/emqx.sh index 348f0b7ef..82cce2a65 100644 --- a/ct/emqx.sh +++ b/ct/emqx.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.emqx.com/en # App Default Values diff --git a/ct/ersatztv.sh b/ct/ersatztv.sh index c77cc7a79..9892eef9e 100644 --- a/ct/ersatztv.sh +++ b/ct/ersatztv.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://ersatztv.org/ # App Default Values @@ -61,4 +61,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8409${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8409${CL}" diff --git a/ct/esphome.sh b/ct/esphome.sh index 6b381486c..63abafe10 100644 --- a/ct/esphome.sh +++ b/ct/esphome.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://esphome.io/ # App Default Values @@ -57,4 +57,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6052${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6052${CL}" diff --git a/ct/evcc.sh b/ct/evcc.sh index bf1070edb..d48c3b69a 100644 --- a/ct/evcc.sh +++ b/ct/evcc.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://evcc.io/en/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7070${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7070${CL}" diff --git a/ct/fenrus.sh b/ct/fenrus.sh index f3ae35507..bc952fefb 100644 --- a/ct/fenrus.sh +++ b/ct/fenrus.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) | Co-Author: Scorpoon -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/revenz/Fenrus # App Default Values diff --git a/ct/fhem.sh b/ct/fhem.sh index 922cad73b..a5ba1ad4e 100644 --- a/ct/fhem.sh +++ b/ct/fhem.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://fhem.de/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8083${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8083${CL}" diff --git a/ct/firefly.sh b/ct/firefly.sh index 542f84ec3..c91c6105c 100644 --- a/ct/firefly.sh +++ b/ct/firefly.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: quantumryuu # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://firefly-iii.org/ # App Default Values @@ -82,4 +82,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/flaresolverr.sh b/ct/flaresolverr.sh index d212c00f7..142e256ce 100644 --- a/ct/flaresolverr.sh +++ b/ct/flaresolverr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) | Co-Author: remz1337 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/FlareSolverr/FlareSolverr # App Default Values @@ -55,4 +55,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8191${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8191${CL}" diff --git a/ct/flowiseai.sh b/ct/flowiseai.sh index ab26b1139..7a0d7e721 100644 --- a/ct/flowiseai.sh +++ b/ct/flowiseai.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://flowiseai.com/ # App Default Values @@ -47,4 +47,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/forgejo.sh b/ct/forgejo.sh index 3e9223ba0..2720ce6a0 100644 --- a/ct/forgejo.sh +++ b/ct/forgejo.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://forgejo.org/ # App Default Values @@ -63,4 +63,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/frigate.sh b/ct/frigate.sh index 40e14e1db..114cfd604 100644 --- a/ct/frigate.sh +++ b/ct/frigate.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Authors: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://frigate.video/ # App Default Values @@ -43,4 +43,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5000${CL}" diff --git a/ct/ghost.sh b/ct/ghost.sh index 29f748c09..5973e0b11 100644 --- a/ct/ghost.sh +++ b/ct/ghost.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: fabrice1236 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://ghost.org/ # App Default Values @@ -54,4 +54,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:2368${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:2368${CL}" diff --git a/ct/gitea.sh b/ct/gitea.sh index ed7fbca44..e447de7fc 100644 --- a/ct/gitea.sh +++ b/ct/gitea.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) | Co-Author: Rogue-King -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://about.gitea.com/ # App Default Values @@ -51,4 +51,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/glance.sh b/ct/glance.sh index 7ef2b4587..c3a506017 100644 --- a/ct/glance.sh +++ b/ct/glance.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/glanceapp/glance # App Default Values @@ -69,4 +69,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" diff --git a/ct/glpi.sh b/ct/glpi.sh index a485061b3..e4410c4aa 100644 --- a/ct/glpi.sh +++ b/ct/glpi.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Nícolas Pastorello (opastorello) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # App Default Values APP="GLPI" diff --git a/ct/go2rtc.sh b/ct/go2rtc.sh index e577388f5..76480e8ca 100644 --- a/ct/go2rtc.sh +++ b/ct/go2rtc.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/AlexxIT/go2rtc # App Default Values @@ -50,4 +50,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:1984${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:1984${CL}" diff --git a/ct/gokapi.sh b/ct/gokapi.sh index 1a86e0ce0..abb9296cd 100644 --- a/ct/gokapi.sh +++ b/ct/gokapi.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/Forceu/Gokapi # App Default Values @@ -43,4 +43,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:53842/setup${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:53842/setup${CL}" diff --git a/ct/gotify.sh b/ct/gotify.sh index a31273f41..a2b7d5ea8 100644 --- a/ct/gotify.sh +++ b/ct/gotify.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://gotify.net/ # App Default Values diff --git a/ct/grafana.sh b/ct/grafana.sh index 7547f14fa..ab46ea99d 100644 --- a/ct/grafana.sh +++ b/ct/grafana.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://grafana.com/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/grist.sh b/ct/grist.sh index 154e3ff5e..4670834f7 100644 --- a/ct/grist.sh +++ b/ct/grist.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Source: https://github.com/gristlabs/grist-core # App Default Values diff --git a/ct/grocy.sh b/ct/grocy.sh index f6bfc8ecb..e337b064d 100644 --- a/ct/grocy.sh +++ b/ct/grocy.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://grocy.info/ # App Default Values @@ -56,4 +56,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/headscale.sh b/ct/headscale.sh index e63aa6a7e..96e8de61a 100644 --- a/ct/headscale.sh +++ b/ct/headscale.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/juanfont/headscale # App Default Values @@ -60,4 +60,4 @@ build_container description msg_ok "Completed Successfully!\n" -echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" \ No newline at end of file +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" diff --git a/ct/heimdall-dashboard.sh b/ct/heimdall-dashboard.sh index 4613040d5..b503a8b4f 100644 --- a/ct/heimdall-dashboard.sh +++ b/ct/heimdall-dashboard.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://heimdall.site/ # App Default Values @@ -81,4 +81,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7990${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7990${CL}" diff --git a/ct/hivemq.sh b/ct/hivemq.sh index fe9aa2ba5..91cccfd20 100644 --- a/ct/hivemq.sh +++ b/ct/hivemq.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.hivemq.com/ # App Default Values @@ -41,4 +41,4 @@ build_container description msg_ok "Completed Successfully!\n" -echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" \ No newline at end of file +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" diff --git a/ct/hoarder.sh b/ct/hoarder.sh index 5a905ad2b..15482450f 100644 --- a/ct/hoarder.sh +++ b/ct/hoarder.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) & vhsdream -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://hoarder.app/ # App Default Values diff --git a/ct/homarr.sh b/ct/homarr.sh index 986763562..c440d6258 100644 --- a/ct/homarr.sh +++ b/ct/homarr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) | Co-Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://homarr.dev/ # App Default Values @@ -35,7 +35,7 @@ function update_script() { if [[ -f /opt/homarr/database/db.sqlite ]]; then msg_error "Old Homarr detected due to existing database file (/opt/homarr/database/db.sqlite)." msg_error "Update not supported. Refer to:" - msg_error " - https://github.com/community-scripts/ProxmoxVE/discussions/1551" + msg_error " - https://github.com/Dracentis/ProxmoxVe/discussions/1551" msg_error " - https://homarr.dev/docs/getting-started/after-the-installation/#importing-a-zip-from-version-before-100" exit 1 fi diff --git a/ct/homeassistant-core.sh b/ct/homeassistant-core.sh index 4e601361e..207234d1d 100644 --- a/ct/homeassistant-core.sh +++ b/ct/homeassistant-core.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: tteck (tteckster) | Co-Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.home-assistant.io/ # App Default Values @@ -30,7 +30,7 @@ function update_script() { # OS Check if ! lsb_release -d | grep -q "Ubuntu 24.10"; then msg_error "Wrong OS detected. This script only supports Ubuntu 24.10." - msg_error "Read Guide: https://github.com/community-scripts/ProxmoxVE/discussions/1549" + msg_error "Read Guide: https://github.com/Dracentis/ProxmoxVe/discussions/1549" exit 1 fi check_container_storage @@ -136,4 +136,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8123${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8123${CL}" diff --git a/ct/homeassistant.sh b/ct/homeassistant.sh index aa35e9416..ab9b1e4ca 100644 --- a/ct/homeassistant.sh +++ b/ct/homeassistant.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.home-assistant.io/ # App Default Values @@ -113,4 +113,4 @@ msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}HA: http://${IP}:8123${CL}" -echo -e "${TAB}${GATEWAY}${BGN}Portainer: http://${IP}:9443${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}Portainer: http://${IP}:9443${CL}" diff --git a/ct/homebox.sh b/ct/homebox.sh index d719007f5..b850a834b 100644 --- a/ct/homebox.sh +++ b/ct/homebox.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck | Co-Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://homebox.software/en/ # App Default Values @@ -66,4 +66,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7745${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7745${CL}" diff --git a/ct/homebridge.sh b/ct/homebridge.sh index 3253b79e4..509464c3d 100644 --- a/ct/homebridge.sh +++ b/ct/homebridge.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://homebridge.io/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8581${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8581${CL}" diff --git a/ct/homepage.sh b/ct/homepage.sh index e2c74b367..2fc776d24 100644 --- a/ct/homepage.sh +++ b/ct/homepage.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://gethomepage.dev/ # App Default Values diff --git a/ct/homer.sh b/ct/homer.sh index 1445fceea..0c0deff04 100644 --- a/ct/homer.sh +++ b/ct/homer.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/bastienwirtz/homer # App Default Values @@ -72,4 +72,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8010${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8010${CL}" diff --git a/ct/hyperhdr.sh b/ct/hyperhdr.sh index bbdc82d39..86d360f68 100644 --- a/ct/hyperhdr.sh +++ b/ct/hyperhdr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.hyperhdr.eu/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8090${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8090${CL}" diff --git a/ct/hyperion.sh b/ct/hyperion.sh index 28b310b5f..d49cb2a91 100644 --- a/ct/hyperion.sh +++ b/ct/hyperion.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://hyperion-project.org/forum/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8090${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8090${CL}" diff --git a/ct/influxdb.sh b/ct/influxdb.sh index 0824effef..debd54087 100644 --- a/ct/influxdb.sh +++ b/ct/influxdb.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.influxdata.com/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8086${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8086${CL}" diff --git a/ct/inspircd.sh b/ct/inspircd.sh index 749911e5b..ed2cd5f70 100644 --- a/ct/inspircd.sh +++ b/ct/inspircd.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.inspircd.org/ # App Default Values @@ -66,4 +66,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Server-Acces it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}${IP}:6667${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}${IP}:6667${CL}" diff --git a/ct/iobroker.sh b/ct/iobroker.sh index 310f0a29c..baa63475b 100644 --- a/ct/iobroker.sh +++ b/ct/iobroker.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.iobroker.net/#en/intro # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8081${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8081${CL}" diff --git a/ct/iventoy.sh b/ct/iventoy.sh index 12a434fff..2ebefb703 100644 --- a/ct/iventoy.sh +++ b/ct/iventoy.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.iventoy.com/en/index.html # App Default Values @@ -43,4 +43,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:26000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:26000${CL}" diff --git a/ct/jackett.sh b/ct/jackett.sh index 0c1c91717..34056e312 100644 --- a/ct/jackett.sh +++ b/ct/jackett.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/Jackett/Jackett # App Default Values diff --git a/ct/jellyfin.sh b/ct/jellyfin.sh index 0e44bcf5f..2e41c1839 100644 --- a/ct/jellyfin.sh +++ b/ct/jellyfin.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://jellyfin.org/ # App Default Values diff --git a/ct/jellyseerr.sh b/ct/jellyseerr.sh index 96ea2ec81..60bc4af75 100644 --- a/ct/jellyseerr.sh +++ b/ct/jellyseerr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://docs.jellyseerr.dev/ # App Default Values @@ -102,4 +102,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5055${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5055${CL}" diff --git a/ct/jenkins.sh b/ct/jenkins.sh index 49e4fcda0..e5e7a25b9 100644 --- a/ct/jenkins.sh +++ b/ct/jenkins.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.jenkins.io/ # App Default Values diff --git a/ct/kavita.sh b/ct/kavita.sh index 4303d04aa..17ec62026 100644 --- a/ct/kavita.sh +++ b/ct/kavita.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.kavitareader.com/ # App Default Values @@ -51,4 +51,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5000${CL}" diff --git a/ct/keycloak.sh b/ct/keycloak.sh index 668a866b4..1c0e1a040 100644 --- a/ct/keycloak.sh +++ b/ct/keycloak.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.keycloak.org/ # App Default Values diff --git a/ct/kimai.sh b/ct/kimai.sh index 1ca15fac6..3a0f67a2a 100644 --- a/ct/kimai.sh +++ b/ct/kimai.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.kimai.org/ # App Default Values @@ -77,4 +77,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/komga.sh b/ct/komga.sh index f8e47c29b..bb60ef109 100644 --- a/ct/komga.sh +++ b/ct/komga.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: madelyn (DysfunctionalProgramming) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://komga.org/ # App Default Values diff --git a/ct/komodo.sh b/ct/komodo.sh index 03e6729bc..df66dcc46 100644 --- a/ct/komodo.sh +++ b/ct/komodo.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://komo.do # App Default Values diff --git a/ct/kubo.sh b/ct/kubo.sh index 7a73b2682..04ba49532 100644 --- a/ct/kubo.sh +++ b/ct/kubo.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) | Co-Author: ulmentflam -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/ipfs/kubo # App Default Values @@ -56,4 +56,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5001/webui${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5001/webui${CL}" diff --git a/ct/lazylibrarian.sh b/ct/lazylibrarian.sh index 37f7e71f8..3311c9d7a 100644 --- a/ct/lazylibrarian.sh +++ b/ct/lazylibrarian.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck | Co-Author: MountyMapleSyrup (MountyMapleSyrup) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://gitlab.com/LazyLibrarian/LazyLibrarian # App Default Values @@ -55,4 +55,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5299${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5299${CL}" diff --git a/ct/lidarr.sh b/ct/lidarr.sh index 809e5a191..3efbeaa5a 100644 --- a/ct/lidarr.sh +++ b/ct/lidarr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://lidarr.audio/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8686${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8686${CL}" diff --git a/ct/linkwarden.sh b/ct/linkwarden.sh index 311f28e44..bede90b69 100644 --- a/ct/linkwarden.sh +++ b/ct/linkwarden.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://linkwarden.app/ # App Default Values diff --git a/ct/listmonk.sh b/ct/listmonk.sh index 55e5c4f5d..026662904 100644 --- a/ct/listmonk.sh +++ b/ct/listmonk.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: bvdberg01 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://listmonk.app/ # App Default Values @@ -74,4 +74,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9000${CL}" diff --git a/ct/lldap.sh b/ct/lldap.sh index 60c97157d..fca692e08 100644 --- a/ct/lldap.sh +++ b/ct/lldap.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) | Co-Author: remz1337 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/lldap/lldap # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:17170${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:17170${CL}" diff --git a/ct/lubelogger.sh b/ct/lubelogger.sh index 82bd7238e..d55fb63fa 100644 --- a/ct/lubelogger.sh +++ b/ct/lubelogger.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://lubelogger.com/ # App Default Values diff --git a/ct/mafl.sh b/ct/mafl.sh index a8e5777d5..601910b78 100644 --- a/ct/mafl.sh +++ b/ct/mafl.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://mafl.hywax.space/ # App Default Values @@ -54,4 +54,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/magicmirror.sh b/ct/magicmirror.sh index 7504eb207..9a88ce750 100644 --- a/ct/magicmirror.sh +++ b/ct/magicmirror.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://magicmirror.builders/ # App Default Values @@ -54,4 +54,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" diff --git a/ct/mariadb.sh b/ct/mariadb.sh index 729d21365..12af59015 100644 --- a/ct/mariadb.sh +++ b/ct/mariadb.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://mariadb.org/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following IP:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}${IP}:3306${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}${IP}:3306${CL}" diff --git a/ct/matterbridge.sh b/ct/matterbridge.sh index 9647cb7cf..86f55ad95 100644 --- a/ct/matterbridge.sh +++ b/ct/matterbridge.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/Luligu/matterbridge # App Default Values @@ -43,4 +43,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8283${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8283${CL}" diff --git a/ct/mediamtx.sh b/ct/mediamtx.sh index 67cb8f9ae..3e84acf19 100644 --- a/ct/mediamtx.sh +++ b/ct/mediamtx.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/bluenviron/mediamtx # App Default Values @@ -42,4 +42,4 @@ build_container description msg_ok "Completed Successfully!\n" -echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" \ No newline at end of file +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" diff --git a/ct/medusa.sh b/ct/medusa.sh index 19aae9b55..ba8d2a841 100644 --- a/ct/medusa.sh +++ b/ct/medusa.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/pymedusa/Medusa.git # App Default Values @@ -58,4 +58,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8081${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8081${CL}" diff --git a/ct/memos.sh b/ct/memos.sh index ed1b30ed8..fcaeb7ae2 100644 --- a/ct/memos.sh +++ b/ct/memos.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.usememos.com/ # App Default Values diff --git a/ct/meshcentral.sh b/ct/meshcentral.sh index 6ae005d41..3bd65fdc5 100644 --- a/ct/meshcentral.sh +++ b/ct/meshcentral.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://meshcentral.com/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/metube.sh b/ct/metube.sh index 8aa488afc..658b6049d 100644 --- a/ct/metube.sh +++ b/ct/metube.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/alexta69/metube # App Default Values @@ -71,4 +71,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8081${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8081${CL}" diff --git a/ct/mongodb.sh b/ct/mongodb.sh index 27e4bd0a1..99631e334 100644 --- a/ct/mongodb.sh +++ b/ct/mongodb.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.mongodb.com/de-de # App Default Values diff --git a/ct/monica.sh b/ct/monica.sh index cb9785875..e7851e375 100644 --- a/ct/monica.sh +++ b/ct/monica.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: bvdberg01 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.monicahq.com/ # App Default Values diff --git a/ct/motioneye.sh b/ct/motioneye.sh index 9436f759d..33ce5c422 100644 --- a/ct/motioneye.sh +++ b/ct/motioneye.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/motioneye-project/motioneye # App Default Values @@ -45,4 +45,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8765${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8765${CL}" diff --git a/ct/mqtt.sh b/ct/mqtt.sh index a577519db..714958f0a 100644 --- a/ct/mqtt.sh +++ b/ct/mqtt.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://mosquitto.org/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following IP:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}${IP}:1883${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}${IP}:1883${CL}" diff --git a/ct/mylar3.sh b/ct/mylar3.sh index 9c7636eb0..8c1b428fd 100644 --- a/ct/mylar3.sh +++ b/ct/mylar3.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: davalanche -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/mylar3/mylar3 # App Default Values @@ -51,4 +51,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8090${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8090${CL}" diff --git a/ct/myspeed.sh b/ct/myspeed.sh index e52d123af..6c716f59d 100644 --- a/ct/myspeed.sh +++ b/ct/myspeed.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) | Co-Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://myspeed.dev/ # App Default Values @@ -72,4 +72,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5216${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5216${CL}" diff --git a/ct/mysql.sh b/ct/mysql.sh index 9c5968f4c..43d7a1191 100644 --- a/ct/mysql.sh +++ b/ct/mysql.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck | Co-Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.mysql.com/ # App Default Values diff --git a/ct/n8n.sh b/ct/n8n.sh index 27c15c605..1c4e185da 100644 --- a/ct/n8n.sh +++ b/ct/n8n.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://n8n.io/ # App Default Values @@ -53,4 +53,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5678${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5678${CL}" diff --git a/ct/navidrome.sh b/ct/navidrome.sh index be9e335b9..003a61207 100644 --- a/ct/navidrome.sh +++ b/ct/navidrome.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.navidrome.org/ # App Default Values diff --git a/ct/neo4j.sh b/ct/neo4j.sh index 0debb55d1..44359fd07 100644 --- a/ct/neo4j.sh +++ b/ct/neo4j.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck | Co-Author: havardthom -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://neo4j.com/product/neo4j-graph-database/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7474${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7474${CL}" diff --git a/ct/netbox.sh b/ct/netbox.sh index 38f54a837..6864902b0 100644 --- a/ct/netbox.sh +++ b/ct/netbox.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: bvdberg01 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://netboxlabs.com/ # App Default Values @@ -87,4 +87,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}https://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}https://${IP}${CL}" diff --git a/ct/nextcloudpi.sh b/ct/nextcloudpi.sh index d22fcaa30..63d85a2a4 100644 --- a/ct/nextcloudpi.sh +++ b/ct/nextcloudpi.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.turnkeylinux.org/nextcloud # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/nextpvr.sh b/ct/nextpvr.sh index 97938904a..038ba355b 100644 --- a/ct/nextpvr.sh +++ b/ct/nextpvr.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (Canbiz) # License: MIT @@ -66,4 +66,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8866${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8866${CL}" diff --git a/ct/nginxproxymanager.sh b/ct/nginxproxymanager.sh index ed3dcdecb..2c5379506 100644 --- a/ct/nginxproxymanager.sh +++ b/ct/nginxproxymanager.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://nginxproxymanager.com/ # App Default Values @@ -162,4 +162,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:81${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:81${CL}" diff --git a/ct/nocodb.sh b/ct/nocodb.sh index a72c91a6a..94eadbf65 100644 --- a/ct/nocodb.sh +++ b/ct/nocodb.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.nocodb.com/ # App Default Values @@ -50,4 +50,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080/dashboard${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080/dashboard${CL}" diff --git a/ct/node-red.sh b/ct/node-red.sh index c2bce1860..0c5292dee 100644 --- a/ct/node-red.sh +++ b/ct/node-red.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://nodered.org/ # App Default Values @@ -104,4 +104,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:1880${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:1880${CL}" diff --git a/ct/nodebb.sh b/ct/nodebb.sh index a327a02b8..4bab0ada3 100644 --- a/ct/nodebb.sh +++ b/ct/nodebb.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # App Default Values APP="NodeBB" diff --git a/ct/notifiarr.sh b/ct/notifiarr.sh index 4bd8f9a0d..0084c76cb 100644 --- a/ct/notifiarr.sh +++ b/ct/notifiarr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://notifiarr.com/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5454${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5454${CL}" diff --git a/ct/ntfy.sh b/ct/ntfy.sh index 4ac3bae0d..ab1daaf52 100644 --- a/ct/ntfy.sh +++ b/ct/ntfy.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://ntfy.sh/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/nzbget.sh b/ct/nzbget.sh index 509105132..776f8a9b6 100644 --- a/ct/nzbget.sh +++ b/ct/nzbget.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck | Co-Author: havardthom -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://nzbget.com/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6789${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6789${CL}" diff --git a/ct/octoprint.sh b/ct/octoprint.sh index be0b71a2a..bfe8c0e76 100644 --- a/ct/octoprint.sh +++ b/ct/octoprint.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://octoprint.org/ # App Default Values @@ -55,4 +55,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5000${CL}" diff --git a/ct/ollama.sh b/ct/ollama.sh index 43cebc9c6..4fc606e38 100644 --- a/ct/ollama.sh +++ b/ct/ollama.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck | Co-Author: havardthom -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://ollama.com/ # App Default Values @@ -45,4 +45,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:14434${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:14434${CL}" diff --git a/ct/omada.sh b/ct/omada.sh index b9b46f86a..de5943b94 100644 --- a/ct/omada.sh +++ b/ct/omada.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.tp-link.com/us/support/download/omada-software-controller/ # App Default Values diff --git a/ct/ombi.sh b/ct/ombi.sh index 610c7dfab..e5a9ba1a3 100644 --- a/ct/ombi.sh +++ b/ct/ombi.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://ombi.io/ # App Default Values @@ -62,4 +62,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5000${CL}" diff --git a/ct/omv.sh b/ct/omv.sh index a05706fd2..539488a31 100644 --- a/ct/omv.sh +++ b/ct/omv.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.openmediavault.org/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/onedev.sh b/ct/onedev.sh index 16e1b1946..31df6d30e 100644 --- a/ct/onedev.sh +++ b/ct/onedev.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://onedev.io/ # App Default Values @@ -69,4 +69,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6610${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6610${CL}" diff --git a/ct/opengist.sh b/ct/opengist.sh index fca88afc2..a4b8ddc78 100644 --- a/ct/opengist.sh +++ b/ct/opengist.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Jonathan (jd-apprentice) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://opengist.io/ # App Default Values diff --git a/ct/openhab.sh b/ct/openhab.sh index 35c407f8c..129bb4b9e 100644 --- a/ct/openhab.sh +++ b/ct/openhab.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.openhab.org/ # App Default Values diff --git a/ct/openobserve.sh b/ct/openobserve.sh index 598182b67..cc9c7252f 100644 --- a/ct/openobserve.sh +++ b/ct/openobserve.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://openobserve.ai/ # App Default Values @@ -48,4 +48,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5080${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5080${CL}" diff --git a/ct/openwebui.sh b/ct/openwebui.sh index 47eab4abc..03c3688ab 100644 --- a/ct/openwebui.sh +++ b/ct/openwebui.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: havardthom -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://openwebui.com/ # App Default Values @@ -57,4 +57,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" diff --git a/ct/overseerr.sh b/ct/overseerr.sh index dff260466..62aea8bb4 100644 --- a/ct/overseerr.sh +++ b/ct/overseerr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://overseerr.dev/ # App Default Values @@ -56,4 +56,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5055${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5055${CL}" diff --git a/ct/owncast.sh b/ct/owncast.sh index 6442af66e..f43c1ad54 100644 --- a/ct/owncast.sh +++ b/ct/owncast.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://owncast.online/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080/admin${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080/admin${CL}" diff --git a/ct/pairdrop.sh b/ct/pairdrop.sh index 00548dd36..d5daa74ec 100644 --- a/ct/pairdrop.sh +++ b/ct/pairdrop.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://pairdrop.net/ # App Default Values @@ -49,4 +49,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/paperless-ngx.sh b/ct/paperless-ngx.sh index 63aead01f..ecd3ea61f 100644 --- a/ct/paperless-ngx.sh +++ b/ct/paperless-ngx.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://docs.paperless-ngx.com/ # App Default Values @@ -98,4 +98,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8000${CL}" diff --git a/ct/part-db.sh b/ct/part-db.sh index dcb31c76f..9699f8bed 100644 --- a/ct/part-db.sh +++ b/ct/part-db.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: bvdberg01 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://docs.part-db.de/ # App Default Values diff --git a/ct/pbs.sh b/ct/pbs.sh index 4c9305055..365b0408c 100644 --- a/ct/pbs.sh +++ b/ct/pbs.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/ct/peanut.sh b/ct/peanut.sh index 87cd3eff7..c79c3178b 100644 --- a/ct/peanut.sh +++ b/ct/peanut.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) | Co-Author: remz1337 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/Brandawg93/PeaNUT/ # App Default Values @@ -61,4 +61,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/petio.sh b/ct/petio.sh index c9d9b2d92..a342ba8c0 100644 --- a/ct/petio.sh +++ b/ct/petio.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://petio.tv/ # App Default Values @@ -47,4 +47,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7777${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7777${CL}" diff --git a/ct/pf2etools.sh b/ct/pf2etools.sh index 967c407d9..83fce332b 100644 --- a/ct/pf2etools.sh +++ b/ct/pf2etools.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: TheRealVira -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://pf2etools.com/ # App Default Values diff --git a/ct/photoprism.sh b/ct/photoprism.sh index f6f79c935..ff8a851c8 100644 --- a/ct/photoprism.sh +++ b/ct/photoprism.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.photoprism.app/ # App Default Values @@ -55,4 +55,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:2342${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:2342${CL}" diff --git a/ct/phpipam.sh b/ct/phpipam.sh index cf9905fde..a6868be91 100644 --- a/ct/phpipam.sh +++ b/ct/phpipam.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: bvdberg01 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://phpipam.net/ # App Default Values diff --git a/ct/pialert.sh b/ct/pialert.sh index 9569f5643..8173f305f 100644 --- a/ct/pialert.sh +++ b/ct/pialert.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/leiweibau/Pi.Alert/ # App Default Values @@ -44,4 +44,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/pialert${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/pialert${CL}" diff --git a/ct/pihole.sh b/ct/pihole.sh index 4071efe7e..33977141d 100644 --- a/ct/pihole.sh +++ b/ct/pihole.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://pi-hole.net/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/admin${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/admin${CL}" diff --git a/ct/pingvin.sh b/ct/pingvin.sh index 6e8eadc1d..99d3079e1 100644 --- a/ct/pingvin.sh +++ b/ct/pingvin.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://stonith404.github.io/pingvin-share/introduction # App Default Values diff --git a/ct/plex.sh b/ct/plex.sh index 004a93e39..2ceb8997b 100644 --- a/ct/plex.sh +++ b/ct/plex.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.plex.tv/ # App Default Values diff --git a/ct/pocketbase.sh b/ct/pocketbase.sh index 8aab765af..fbd88ed23 100644 --- a/ct/pocketbase.sh +++ b/ct/pocketbase.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://pocketbase.io/ # App Default Values diff --git a/ct/pocketid.sh b/ct/pocketid.sh index 5e717f6f8..3695f20c7 100755 --- a/ct/pocketid.sh +++ b/ct/pocketid.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Snarkenfaugister -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/stonith404/pocket-id # App Default Values diff --git a/ct/podman-homeassistant.sh b/ct/podman-homeassistant.sh index f0e43c2ae..fee399323 100644 --- a/ct/podman-homeassistant.sh +++ b/ct/podman-homeassistant.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # App Default Values APP="Podman-Home Assistant" @@ -111,4 +111,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8123${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8123${CL}" diff --git a/ct/podman.sh b/ct/podman.sh index ef36a6824..f13f81597 100644 --- a/ct/podman.sh +++ b/ct/podman.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://podman.io/ # App Default Values @@ -44,4 +44,4 @@ build_container description msg_ok "Completed Successfully!\n" -echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" \ No newline at end of file +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" diff --git a/ct/postgresql.sh b/ct/postgresql.sh index 287bfab13..68f817619 100644 --- a/ct/postgresql.sh +++ b/ct/postgresql.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.postgresql.org/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following IP:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}${IP}:5432${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}${IP}:5432${CL}" diff --git a/ct/projectsend.sh b/ct/projectsend.sh index f2e845662..7c5522101 100644 --- a/ct/projectsend.sh +++ b/ct/projectsend.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: bvdberg01 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.projectsend.org/ # App Default Values diff --git a/ct/prometheus-alertmanager.sh b/ct/prometheus-alertmanager.sh index adcd77a46..b56e881b7 100755 --- a/ct/prometheus-alertmanager.sh +++ b/ct/prometheus-alertmanager.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Andy Grunwald (andygrunwald) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://prometheus.io/ # App Default Values @@ -64,4 +64,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9093${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9093${CL}" diff --git a/ct/prometheus-pve-exporter.sh b/ct/prometheus-pve-exporter.sh index 198e42806..ecc649f70 100644 --- a/ct/prometheus-pve-exporter.sh +++ b/ct/prometheus-pve-exporter.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Andy Grunwald (andygrunwald) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/prometheus-pve/prometheus-pve-exporter # App Default Values @@ -54,4 +54,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9221${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9221${CL}" diff --git a/ct/prometheus.sh b/ct/prometheus.sh index 7e1a78582..708fb9448 100644 --- a/ct/prometheus.sh +++ b/ct/prometheus.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://prometheus.io/ # App Default Values @@ -64,4 +64,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9090${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9090${CL}" diff --git a/ct/prowlarr.sh b/ct/prowlarr.sh index 04c8a4ec5..0ec671405 100644 --- a/ct/prowlarr.sh +++ b/ct/prowlarr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://prowlarr.com/ # App Default Values @@ -43,4 +43,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9696${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9696${CL}" diff --git a/ct/proxmox-datacenter-manager.sh b/ct/proxmox-datacenter-manager.sh index 2ee486339..4396a7a95 100644 --- a/ct/proxmox-datacenter-manager.sh +++ b/ct/proxmox-datacenter-manager.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: CrazyWolf13 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: Proxmox Server Solution GmbH # App Default Values diff --git a/ct/ps5-mqtt.sh b/ct/ps5-mqtt.sh index 98e751e4f..fea6f7c2b 100644 --- a/ct/ps5-mqtt.sh +++ b/ct/ps5-mqtt.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: liecno -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/FunkeyFlo/ps5-mqtt/ # App Default Values diff --git a/ct/qbittorrent.sh b/ct/qbittorrent.sh index 790a57167..a291a52e3 100644 --- a/ct/qbittorrent.sh +++ b/ct/qbittorrent.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.qbittorrent.org/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8090${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8090${CL}" diff --git a/ct/rabbitmq.sh b/ct/rabbitmq.sh index c47d56da8..e7a778072 100644 --- a/ct/rabbitmq.sh +++ b/ct/rabbitmq.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck | Co-Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.rabbitmq.com/ # App Default Values @@ -54,4 +54,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:15672${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:15672${CL}" diff --git a/ct/radarr.sh b/ct/radarr.sh index c6ee25078..074da96ea 100644 --- a/ct/radarr.sh +++ b/ct/radarr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://radarr.video/ # App Default Values @@ -43,4 +43,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7878${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7878${CL}" diff --git a/ct/rdtclient.sh b/ct/rdtclient.sh index 3b26ad7c0..2669e1389 100755 --- a/ct/rdtclient.sh +++ b/ct/rdtclient.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/rogerfar/rdt-client # App Default Values @@ -66,4 +66,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6500${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6500${CL}" diff --git a/ct/readarr.sh b/ct/readarr.sh index 2c0bf458d..40acde1e1 100644 --- a/ct/readarr.sh +++ b/ct/readarr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://readarr.com/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8787${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8787${CL}" diff --git a/ct/readeck.sh b/ct/readeck.sh index a34294edd..714fec581 100644 --- a/ct/readeck.sh +++ b/ct/readeck.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://readeck.org/en/ # App Default Values @@ -51,4 +51,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8000${CL}" diff --git a/ct/recyclarr.sh b/ct/recyclarr.sh index 388ab627e..5a7a0f141 100644 --- a/ct/recyclarr.sh +++ b/ct/recyclarr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: MrYadro -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://recyclarr.dev/wiki/ # App Default Values @@ -50,4 +50,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following IP:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}${IP}${CL}" diff --git a/ct/redis.sh b/ct/redis.sh index 13b29e590..6bae7bbf5 100644 --- a/ct/redis.sh +++ b/ct/redis.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://redis.io/ # App Default Values @@ -43,4 +43,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following IP:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}${IP}:6379${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}${IP}:6379${CL}" diff --git a/ct/rtsptoweb.sh b/ct/rtsptoweb.sh index c09182a38..6c3303f5f 100644 --- a/ct/rtsptoweb.sh +++ b/ct/rtsptoweb.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/deepch/RTSPtoWeb # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8083${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8083${CL}" diff --git a/ct/runtipi.sh b/ct/runtipi.sh index 3beb2ea2d..3b18448fb 100644 --- a/ct/runtipi.sh +++ b/ct/runtipi.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://runtipi.io/ # App Default Values @@ -43,4 +43,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/sabnzbd.sh b/ct/sabnzbd.sh index 9c8489836..7f08c09ba 100644 --- a/ct/sabnzbd.sh +++ b/ct/sabnzbd.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://sabnzbd.org/ # App Default Values diff --git a/ct/semaphore.sh b/ct/semaphore.sh index 12d32a0a1..52ada7b9b 100644 --- a/ct/semaphore.sh +++ b/ct/semaphore.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://semaphoreui.com/ # App Default Values @@ -68,4 +68,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/sftpgo.sh b/ct/sftpgo.sh index 6a14392c1..bed019f54 100644 --- a/ct/sftpgo.sh +++ b/ct/sftpgo.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://sftpgo.com/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080/web/admin${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080/web/admin${CL}" diff --git a/ct/shinobi.sh b/ct/shinobi.sh index 4da07b586..d54431d53 100644 --- a/ct/shinobi.sh +++ b/ct/shinobi.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://shinobi.video/ # App Default Values @@ -49,4 +49,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080/super${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080/super${CL}" diff --git a/ct/silverbullet.sh b/ct/silverbullet.sh index 56bf1a4e6..3f3688a77 100644 --- a/ct/silverbullet.sh +++ b/ct/silverbullet.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Dominik Siebel (dsiebel) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://silverbullet.md # App default values diff --git a/ct/smokeping.sh b/ct/smokeping.sh index 8bd4a2421..6b691488b 100644 --- a/ct/smokeping.sh +++ b/ct/smokeping.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://oss.oetiker.ch/smokeping/ # App Default Values @@ -47,4 +47,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/smokeping${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/smokeping${CL}" diff --git a/ct/snipeit.sh b/ct/snipeit.sh index 025088047..7a5240e7f 100644 --- a/ct/snipeit.sh +++ b/ct/snipeit.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Michel Roegl-Brunner (michelroegl-brunner) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://snipeitapp.com/ # App Default Values @@ -72,4 +72,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/sonarr.sh b/ct/sonarr.sh index 606fdb30b..ca9b73ca1 100644 --- a/ct/sonarr.sh +++ b/ct/sonarr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://sonarr.tv/ # App Default Values @@ -51,4 +51,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8989${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8989${CL}" diff --git a/ct/spoolman.sh b/ct/spoolman.sh index f98dc1f24..48e2d6f32 100644 --- a/ct/spoolman.sh +++ b/ct/spoolman.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/Donkie/Spoolman # App Default Values @@ -73,4 +73,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7912${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7912${CL}" diff --git a/ct/sqlserver2022.sh b/ct/sqlserver2022.sh index fe7ab57e3..84a16a1af 100644 --- a/ct/sqlserver2022.sh +++ b/ct/sqlserver2022.sh @@ -2,7 +2,7 @@ source <(curl -s https://raw.githubusercontent.com/kris701/ProxmoxVE/refs/heads/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Kristian Skov -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.microsoft.com/en-us/sql-server/sql-server-2022 # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following IP:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}${IP}:1433${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}${IP}:1433${CL}" diff --git a/ct/stirling-pdf.sh b/ct/stirling-pdf.sh index c212c18c6..301e2568e 100644 --- a/ct/stirling-pdf.sh +++ b/ct/stirling-pdf.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.stirlingpdf.com/ # App Default Values @@ -61,4 +61,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" diff --git a/ct/syncthing.sh b/ct/syncthing.sh index 455e262f1..2126ae6c3 100644 --- a/ct/syncthing.sh +++ b/ct/syncthing.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://syncthing.net/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8384${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8384${CL}" diff --git a/ct/tandoor.sh b/ct/tandoor.sh index 9a3dfe896..48d6429a1 100644 --- a/ct/tandoor.sh +++ b/ct/tandoor.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://tandoor.dev/ # App Default Values diff --git a/ct/tasmoadmin.sh b/ct/tasmoadmin.sh index 500d67d63..f86dd5f98 100644 --- a/ct/tasmoadmin.sh +++ b/ct/tasmoadmin.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/TasmoAdmin/TasmoAdmin # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9999${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9999${CL}" diff --git a/ct/tautulli.sh b/ct/tautulli.sh index 0675f5bbb..148dec199 100644 --- a/ct/tautulli.sh +++ b/ct/tautulli.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://tautulli.com/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8181${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8181${CL}" diff --git a/ct/tdarr.sh b/ct/tdarr.sh index 6360f0014..5a089d0a0 100644 --- a/ct/tdarr.sh +++ b/ct/tdarr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://home.tdarr.io/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8265${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8265${CL}" diff --git a/ct/technitiumdns.sh b/ct/technitiumdns.sh index 8f6877082..0eb2a2d62 100644 --- a/ct/technitiumdns.sh +++ b/ct/technitiumdns.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://technitium.com/dns/ # App Default Values @@ -53,4 +53,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5380${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5380${CL}" diff --git a/ct/teddycloud.sh b/ct/teddycloud.sh index ad71c6565..512f64661 100644 --- a/ct/teddycloud.sh +++ b/ct/teddycloud.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Dominik Siebel (dsiebel) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/toniebox-reverse-engineering/teddycloud # App default values diff --git a/ct/the-lounge.sh b/ct/the-lounge.sh index 28d426aed..75f3d6ce6 100644 --- a/ct/the-lounge.sh +++ b/ct/the-lounge.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://thelounge.chat/ # App Default Values @@ -66,4 +66,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9000${CL}" diff --git a/ct/threadfin.sh b/ct/threadfin.sh index 83c5ed795..c7715557b 100644 --- a/ct/threadfin.sh +++ b/ct/threadfin.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/Threadfin/Threadfin # App Default Values @@ -48,4 +48,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:34400/web${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:34400/web${CL}" diff --git a/ct/tianji.sh b/ct/tianji.sh index 96b2d5675..ec8b11e5b 100644 --- a/ct/tianji.sh +++ b/ct/tianji.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://tianji.msgbyte.com/ # App Default Values diff --git a/ct/traccar.sh b/ct/traccar.sh index 5487784ae..e9cc9adc3 100644 --- a/ct/traccar.sh +++ b/ct/traccar.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.traccar.org/ # App Default Values @@ -44,4 +44,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8082${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8082${CL}" diff --git a/ct/traefik.sh b/ct/traefik.sh index 39786b8e5..645d344ac 100644 --- a/ct/traefik.sh +++ b/ct/traefik.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://traefik.io/ # App Default Values @@ -55,4 +55,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" diff --git a/ct/transmission.sh b/ct/transmission.sh index 78d5b1b4a..e72820ed3 100644 --- a/ct/transmission.sh +++ b/ct/transmission.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://transmissionbt.com/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9091/transmission${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9091/transmission${CL}" diff --git a/ct/trilium.sh b/ct/trilium.sh index a2835202c..2ca79b447 100644 --- a/ct/trilium.sh +++ b/ct/trilium.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://triliumnext.github.io/Docs/ # App Default Values @@ -64,4 +64,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" diff --git a/ct/typesense.sh b/ct/typesense.sh index f4e5aa9bb..5b52212d4 100644 --- a/ct/typesense.sh +++ b/ct/typesense.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: tlissak | Co-Author MickLesk -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://typesense.org/ # App Default Values diff --git a/ct/ubuntu.sh b/ct/ubuntu.sh index d3aac33f5..87d0daae4 100644 --- a/ct/ubuntu.sh +++ b/ct/ubuntu.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://ubuntu.com/ # App Default Values @@ -44,4 +44,4 @@ build_container description msg_ok "Completed Successfully!\n" -echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" \ No newline at end of file +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" diff --git a/ct/umami.sh b/ct/umami.sh index 6b898cae1..08faead8d 100644 --- a/ct/umami.sh +++ b/ct/umami.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://umami.is/ # App Default Values @@ -59,4 +59,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/umbrel.sh b/ct/umbrel.sh index 5dc0a7918..47d191e67 100644 --- a/ct/umbrel.sh +++ b/ct/umbrel.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://umbrel.com/ # App Default Values @@ -42,4 +42,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized! (manual reboot is required!)${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/unbound.sh b/ct/unbound.sh index b0a0d1ecc..332e12424 100644 --- a/ct/unbound.sh +++ b/ct/unbound.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: wimb0 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/NLnetLabs/unbound # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5335${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5335${CL}" diff --git a/ct/unifi.sh b/ct/unifi.sh index 816377d13..791753130 100644 --- a/ct/unifi.sh +++ b/ct/unifi.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://ui.com/download/unifi # App Default Values diff --git a/ct/unmanic.sh b/ct/unmanic.sh index bce7450a0..afdfa8597 100644 --- a/ct/unmanic.sh +++ b/ct/unmanic.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://docs.unmanic.app/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8888${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8888${CL}" diff --git a/ct/uptimekuma.sh b/ct/uptimekuma.sh index 0efe730fd..6f6295131 100644 --- a/ct/uptimekuma.sh +++ b/ct/uptimekuma.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://uptime.kuma.pet/ # App Default Values diff --git a/ct/urbackupserver.sh b/ct/urbackupserver.sh index 7ebcffb87..4e687e58b 100644 --- a/ct/urbackupserver.sh +++ b/ct/urbackupserver.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/refs/heads/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/refs/heads/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Kristian Skov -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.urbackup.org/ # App Default Values diff --git a/ct/vaultwarden.sh b/ct/vaultwarden.sh index 4d12d0dac..56a66be4a 100644 --- a/ct/vaultwarden.sh +++ b/ct/vaultwarden.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.vaultwarden.net/ # App Default Values diff --git a/ct/vikunja.sh b/ct/vikunja.sh index e805f8b23..95d2133aa 100644 --- a/ct/vikunja.sh +++ b/ct/vikunja.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://vikunja.io/ # App Default Values diff --git a/ct/wallos.sh b/ct/wallos.sh index 9931f1f70..1b259cb29 100644 --- a/ct/wallos.sh +++ b/ct/wallos.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://wallosapp.com/ # App Default Values @@ -74,4 +74,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/wastebin.sh b/ct/wastebin.sh index 88de3fb7b..d52fae3b1 100644 --- a/ct/wastebin.sh +++ b/ct/wastebin.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/matze/wastebin # App Default Values diff --git a/ct/watchyourlan.sh b/ct/watchyourlan.sh index de29154eb..a90888d99 100644 --- a/ct/watchyourlan.sh +++ b/ct/watchyourlan.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/aceberg/WatchYourLAN # App Default Values @@ -53,4 +53,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8840${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8840${CL}" diff --git a/ct/wavelog.sh b/ct/wavelog.sh index 0dc24ae24..53e8446df 100644 --- a/ct/wavelog.sh +++ b/ct/wavelog.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Don Locke (DonLocke) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.wavelog.org/ # App Default Values @@ -84,4 +84,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/whisparr.sh b/ct/whisparr.sh index 53e2fff89..77025f665 100644 --- a/ct/whisparr.sh +++ b/ct/whisparr.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/Whisparr/Whisparr # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6969${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:6969${CL}" diff --git a/ct/whoogle.sh b/ct/whoogle.sh index 1010b6fc0..b0a7b7ca0 100644 --- a/ct/whoogle.sh +++ b/ct/whoogle.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/benbusby/whoogle-search # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5000${CL}" diff --git a/ct/wikijs.sh b/ct/wikijs.sh index d387b2d95..b58c5712b 100644 --- a/ct/wikijs.sh +++ b/ct/wikijs.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://js.wiki/ # App Default Values @@ -68,4 +68,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/wireguard.sh b/ct/wireguard.sh index 946a909ea..ac5db7938 100644 --- a/ct/wireguard.sh +++ b/ct/wireguard.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.wireguard.com/ # App Default Values @@ -47,4 +47,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} WGDashboard Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:10086${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:10086${CL}" diff --git a/ct/wordpress.sh b/ct/wordpress.sh index 8ff69de17..f4fc824a0 100644 --- a/ct/wordpress.sh +++ b/ct/wordpress.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 communtiy-scripts ORG # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://wordpress.org/ ## App Default Values @@ -42,4 +42,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN} ${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/${CL}" diff --git a/ct/yunohost.sh b/ct/yunohost.sh index 36319202a..f882765ac 100644 --- a/ct/yunohost.sh +++ b/ct/yunohost.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://yunohost.org/ # App Default Values @@ -46,4 +46,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/zabbix.sh b/ct/zabbix.sh index 14cfc3579..91ff7ff10 100644 --- a/ct/zabbix.sh +++ b/ct/zabbix.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.zabbix.com/ # App Default Values diff --git a/ct/zammad.sh b/ct/zammad.sh index e96d4f6c6..88d8a5d49 100644 --- a/ct/zammad.sh +++ b/ct/zammad.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: Michel Roegl-Brunner (michelroegl-brunner) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://zammad.com #App Default Values @@ -53,4 +53,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/zigbee2mqtt.sh b/ct/zigbee2mqtt.sh index 591e19bb7..af9590987 100644 --- a/ct/zigbee2mqtt.sh +++ b/ct/zigbee2mqtt.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.zigbee2mqtt.io/ # App Default Values diff --git a/ct/zipline.sh b/ct/zipline.sh index 7031bf8e9..2e9ec50da 100644 --- a/ct/zipline.sh +++ b/ct/zipline.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://zipline.diced.sh/ # App Default Values @@ -71,4 +71,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/zoraxy.sh b/ct/zoraxy.sh index 2f30ebc23..40ba07c3c 100644 --- a/ct/zoraxy.sh +++ b/ct/zoraxy.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://zoraxy.aroz.org/ # App Default Values @@ -56,4 +56,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8000${CL}" diff --git a/ct/zwave-js-ui.sh b/ct/zwave-js-ui.sh index ffea06b2a..07a0ca5b2 100644 --- a/ct/zwave-js-ui.sh +++ b/ct/zwave-js-ui.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/build.func) # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://zwave-js.github.io/zwave-js-ui/#/ # App Default Values @@ -67,4 +67,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8091${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8091${CL}" diff --git a/install/actualbudget-install.sh b/install/actualbudget-install.sh index b6068c2cd..0c85d78c5 100644 --- a/install/actualbudget-install.sh +++ b/install/actualbudget-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/adguard-install.sh b/install/adguard-install.sh index b62255c10..3ed0aca06 100644 --- a/install/adguard-install.sh +++ b/install/adguard-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/adventurelog-install.sh b/install/adventurelog-install.sh index 250a4d8f2..9317b92c7 100644 --- a/install/adventurelog-install.sh +++ b/install/adventurelog-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/seanmorley15/AdventureLog source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" @@ -172,4 +172,4 @@ msg_info "Cleaning up" rm -rf /opt/v${RELEASE}.zip $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/agentdvr-install.sh b/install/agentdvr-install.sh index fc21d7fac..9ed5893ac 100644 --- a/install/agentdvr-install.sh +++ b/install/agentdvr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/alpine-docker-install.sh b/install/alpine-docker-install.sh index cd70c6f0e..99d0d8f00 100644 --- a/install/alpine-docker-install.sh +++ b/install/alpine-docker-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/alpine-grafana-install.sh b/install/alpine-grafana-install.sh index d6b59ef60..6715436bb 100644 --- a/install/alpine-grafana-install.sh +++ b/install/alpine-grafana-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color @@ -29,4 +29,4 @@ $STD rc-update add grafana default msg_ok "Installed Grafana" motd_ssh -customize \ No newline at end of file +customize diff --git a/install/alpine-install.sh b/install/alpine-install.sh index 83999eb68..f29a2674f 100644 --- a/install/alpine-install.sh +++ b/install/alpine-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/alpine-nextcloud-install.sh b/install/alpine-nextcloud-install.sh index 7f337a052..633837700 100644 --- a/install/alpine-nextcloud-install.sh +++ b/install/alpine-nextcloud-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/alpine-vaultwarden-install.sh b/install/alpine-vaultwarden-install.sh index c3a934901..f68d015af 100644 --- a/install/alpine-vaultwarden-install.sh +++ b/install/alpine-vaultwarden-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/alpine-zigbee2mqtt-install.sh b/install/alpine-zigbee2mqtt-install.sh index 7c2943888..2014adcba 100644 --- a/install/alpine-zigbee2mqtt-install.sh +++ b/install/alpine-zigbee2mqtt-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/apache-cassandra-install.sh b/install/apache-cassandra-install.sh index 733102ee2..eca176af9 100644 --- a/install/apache-cassandra-install.sh +++ b/install/apache-cassandra-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/apache-couchdb-install.sh b/install/apache-couchdb-install.sh index 4388aaac6..55e5f521f 100644 --- a/install/apache-couchdb-install.sh +++ b/install/apache-couchdb-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/apache-guacamole-install.sh b/install/apache-guacamole-install.sh index 435193e14..86f94ed1c 100644 --- a/install/apache-guacamole-install.sh +++ b/install/apache-guacamole-install.sh @@ -2,7 +2,7 @@ #Copyright (c) 2021-2025 community-scripts ORG # Author: Michel Roegl-Brunner (michelroegl-brunner) | MickLesk (CanbiZ) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/apt-cacher-ng-install.sh b/install/apt-cacher-ng-install.sh index fb0a8330c..a9b290fb3 100644 --- a/install/apt-cacher-ng-install.sh +++ b/install/apt-cacher-ng-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/archivebox-install.sh b/install/archivebox-install.sh index 59c29c81c..b1e04e41a 100644 --- a/install/archivebox-install.sh +++ b/install/archivebox-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/aria2-install.sh b/install/aria2-install.sh index ac44a0564..c936227f8 100644 --- a/install/aria2-install.sh +++ b/install/aria2-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color @@ -95,4 +95,4 @@ msg_info "Cleaning up" rm AriaNg-*-AllInOne.zip $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/audiobookshelf-install.sh b/install/audiobookshelf-install.sh index 73ea69b7a..d7a80f0f1 100644 --- a/install/audiobookshelf-install.sh +++ b/install/audiobookshelf-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/authentik-install.sh b/install/authentik-install.sh index fc36f2e57..4800d5645 100644 --- a/install/authentik-install.sh +++ b/install/authentik-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: remz1337 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/autobrr-install.sh b/install/autobrr-install.sh index b843c2592..6357f2911 100644 --- a/install/autobrr-install.sh +++ b/install/autobrr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/bazarr-install.sh b/install/bazarr-install.sh index e7ee817a0..4785617bb 100755 --- a/install/bazarr-install.sh +++ b/install/bazarr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color @@ -65,4 +65,4 @@ msg_info "Cleaning up" rm -rf bazarr.zip $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/beszel-install.sh b/install/beszel-install.sh index 378570cf6..7933a6aa4 100644 --- a/install/beszel-install.sh +++ b/install/beszel-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: Michelle Zitzerman (Sinofage) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color @@ -51,4 +51,4 @@ customize msg_info "Cleaning up" $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/blocky-install.sh b/install/blocky-install.sh index 69374672a..271a0a104 100644 --- a/install/blocky-install.sh +++ b/install/blocky-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/bookstack-install.sh b/install/bookstack-install.sh index 3d648742f..57fc89160 100644 --- a/install/bookstack-install.sh +++ b/install/bookstack-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/bunkerweb-install.sh b/install/bunkerweb-install.sh index 3ed4797fd..869d7d602 100644 --- a/install/bunkerweb-install.sh +++ b/install/bunkerweb-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/caddy-install.sh b/install/caddy-install.sh index 8490b970c..996de4db0 100644 --- a/install/caddy-install.sh +++ b/install/caddy-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) | Co-Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/calibre-web-install.sh b/install/calibre-web-install.sh index a091fb41e..c8c3c93e8 100644 --- a/install/calibre-web-install.sh +++ b/install/calibre-web-install.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Co-Author: remz1337 # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/casaos-install.sh b/install/casaos-install.sh index 99136ee9b..bd4c6f1a9 100644 --- a/install/casaos-install.sh +++ b/install/casaos-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/changedetection-install.sh b/install/changedetection-install.sh index 001c94040..f9ad4476c 100644 --- a/install/changedetection-install.sh +++ b/install/changedetection-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/channels-install.sh b/install/channels-install.sh index f4b545204..8992e6d92 100644 --- a/install/channels-install.sh +++ b/install/channels-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/checkmk-install.sh b/install/checkmk-install.sh index 12328af75..b730970ec 100644 --- a/install/checkmk-install.sh +++ b/install/checkmk-install.sh @@ -3,7 +3,7 @@ #Copyright (c) 2021-2025 community-scripts ORG # Author: Michel Roegl-Brunner (michelroegl-brunner) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/cloudflared-install.sh b/install/cloudflared-install.sh index f0f5c925d..6671d51d6 100644 --- a/install/cloudflared-install.sh +++ b/install/cloudflared-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/cockpit-install.sh b/install/cockpit-install.sh index c444f7fa8..06686b81f 100644 --- a/install/cockpit-install.sh +++ b/install/cockpit-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: havardthom # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/cockpit-project/cockpit source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/commafeed-install.sh b/install/commafeed-install.sh index 78fd051ca..cae23d9ea 100644 --- a/install/commafeed-install.sh +++ b/install/commafeed-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/cronicle-install.sh b/install/cronicle-install.sh index 56148456a..6ed715b79 100644 --- a/install/cronicle-install.sh +++ b/install/cronicle-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/daemonsync-install.sh b/install/daemonsync-install.sh index 20febdb17..5cd667d3a 100644 --- a/install/daemonsync-install.sh +++ b/install/daemonsync-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color @@ -21,7 +21,7 @@ $STD apt-get install -y g++-multilib msg_ok "Installed Dependencies" msg_info "Installing Daemon Sync Server" -wget -qL https://github.com/community-scripts/ProxmoxVE/raw/main/misc/daemonsync_2.2.0.0059_amd64.deb +wget -qL https://github.com/Dracentis/ProxmoxVe/raw/main/misc/daemonsync_2.2.0.0059_amd64.deb $STD dpkg -i daemonsync_2.2.0.0059_amd64.deb msg_ok "Installed Daemon Sync Server" diff --git a/install/dashy-install.sh b/install/dashy-install.sh index fb41a6758..7d12d77c6 100644 --- a/install/dashy-install.sh +++ b/install/dashy-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/debian-install.sh b/install/debian-install.sh index 209714516..e15c8216b 100644 --- a/install/debian-install.sh +++ b/install/debian-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color @@ -25,4 +25,4 @@ customize msg_info "Cleaning up" $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/deconz-install.sh b/install/deconz-install.sh index 0ee44eec6..ea4be2f51 100644 --- a/install/deconz-install.sh +++ b/install/deconz-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/deluge-install.sh b/install/deluge-install.sh index fcb55dafe..48319bb19 100644 --- a/install/deluge-install.sh +++ b/install/deluge-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/docker-install.sh b/install/docker-install.sh index 7e7708888..610372032 100644 --- a/install/docker-install.sh +++ b/install/docker-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/dockge-install.sh b/install/dockge-install.sh index f25d671ec..064308c85 100644 --- a/install/dockge-install.sh +++ b/install/dockge-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/dotnetaspwebapi-install.sh b/install/dotnetaspwebapi-install.sh index 1aeee7aa7..483a7f951 100644 --- a/install/dotnetaspwebapi-install.sh +++ b/install/dotnetaspwebapi-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: Kristian Skov -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/emby-install.sh b/install/emby-install.sh index 153d19ac5..36bde2417 100644 --- a/install/emby-install.sh +++ b/install/emby-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/emqx-install.sh b/install/emqx-install.sh index 1818b9b92..840cc3332 100644 --- a/install/emqx-install.sh +++ b/install/emqx-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/ersatztv-install.sh b/install/ersatztv-install.sh index 8e0a7389f..68c3f1a48 100644 --- a/install/ersatztv-install.sh +++ b/install/ersatztv-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/ErsatzTV/ErsatzTV source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/esphome-install.sh b/install/esphome-install.sh index 4c2c8bdf4..d3bc992d2 100644 --- a/install/esphome-install.sh +++ b/install/esphome-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/evcc-install.sh b/install/evcc-install.sh index f0861c925..187264782 100644 --- a/install/evcc-install.sh +++ b/install/evcc-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/evcc-io/evcc source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/fenrus-install.sh b/install/fenrus-install.sh index 2ccd0e689..be667e112 100644 --- a/install/fenrus-install.sh +++ b/install/fenrus-install.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Co-Author: Scorpoon # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/revenz/Fenrus diff --git a/install/fhem-install.sh b/install/fhem-install.sh index 4188cff44..0236fcaa9 100644 --- a/install/fhem-install.sh +++ b/install/fhem-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/firefly-install.sh b/install/firefly-install.sh index 17b5623de..3168f237d 100644 --- a/install/firefly-install.sh +++ b/install/firefly-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: quantumryuu # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/flaresolverr-install.sh b/install/flaresolverr-install.sh index a9e57590b..0dd720ea8 100644 --- a/install/flaresolverr-install.sh +++ b/install/flaresolverr-install.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Co-Author: remz1337 # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/flowiseai-install.sh b/install/flowiseai-install.sh index a2932e949..5cd62a55c 100644 --- a/install/flowiseai-install.sh +++ b/install/flowiseai-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/forgejo-install.sh b/install/forgejo-install.sh index 2da47a055..2f5329c7b 100644 --- a/install/forgejo-install.sh +++ b/install/forgejo-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/frigate-install.sh b/install/frigate-install.sh index 5023324f2..ea0808c0c 100644 --- a/install/frigate-install.sh +++ b/install/frigate-install.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Co-Author: remz1337 # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/ghost-install.sh b/install/ghost-install.sh index 9bc6829af..37f658cf8 100644 --- a/install/ghost-install.sh +++ b/install/ghost-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: fabrice1236 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://ghost.org/ # Import Functions und Setup diff --git a/install/gitea-install.sh b/install/gitea-install.sh index 17cd4adc0..2b6d5c58c 100644 --- a/install/gitea-install.sh +++ b/install/gitea-install.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Co-author: Rogue-King # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/glance-install.sh b/install/glance-install.sh index c30bfaf63..c25fb5717 100644 --- a/install/glance-install.sh +++ b/install/glance-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color @@ -45,7 +45,7 @@ pages: - title: Google url: https://www.google.com/ - title: Helper Scripts - url: https://github.com/community-scripts/ProxmoxVE + url: https://github.com/Dracentis/ProxmoxVe EOF echo "${RELEASE}" >"/opt/${APPLICATION}_version.txt" @@ -78,4 +78,4 @@ msg_info "Cleaning up" rm -rf /opt/glance-linux-amd64.tar.gz $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/glpi-install.sh b/install/glpi-install.sh index 61fc6f29a..77f35ebec 100644 --- a/install/glpi-install.sh +++ b/install/glpi-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: Nícolas Pastorello (opastorello) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/go2rtc-install.sh b/install/go2rtc-install.sh index babf59131..3e9664ae4 100644 --- a/install/go2rtc-install.sh +++ b/install/go2rtc-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/gokapi-install.sh b/install/gokapi-install.sh index e25b6840d..c98a9a18a 100644 --- a/install/gokapi-install.sh +++ b/install/gokapi-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/gotify-install.sh b/install/gotify-install.sh index 67f8472d1..8bcb81bda 100644 --- a/install/gotify-install.sh +++ b/install/gotify-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/grafana-install.sh b/install/grafana-install.sh index 2a4fc3e2e..ea392a65e 100644 --- a/install/grafana-install.sh +++ b/install/grafana-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/grist-install.sh b/install/grist-install.sh index 30786777d..22df2f418 100644 --- a/install/grist-install.sh +++ b/install/grist-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: cfurrow # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/gristlabs/grist-core source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" @@ -80,4 +80,4 @@ msg_info "Cleaning up" rm -rf /opt/v${RELEASE}.zip $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/grocy-install.sh b/install/grocy-install.sh index 63bee18be..e9dc8b7ae 100644 --- a/install/grocy-install.sh +++ b/install/grocy-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/headscale-install.sh b/install/headscale-install.sh index c1464f45c..801cac7db 100644 --- a/install/headscale-install.sh +++ b/install/headscale-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/heimdall-dashboard-install.sh b/install/heimdall-dashboard-install.sh index 0cb03c2b2..0d85a5fbd 100644 --- a/install/heimdall-dashboard-install.sh +++ b/install/heimdall-dashboard-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/hivemq-install.sh b/install/hivemq-install.sh index 42c0d4aa8..12f4e8a56 100644 --- a/install/hivemq-install.sh +++ b/install/hivemq-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/hoarder-install.sh b/install/hoarder-install.sh index a513460cf..7f4d2cb1f 100644 --- a/install/hoarder-install.sh +++ b/install/hoarder-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: MickLesk (Canbiz) & vhsdream # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/homarr-install.sh b/install/homarr-install.sh index 6a0ba36b6..7df5da8c0 100644 --- a/install/homarr-install.sh +++ b/install/homarr-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/ajnart/homarr source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/homeassistant-core-install.sh b/install/homeassistant-core-install.sh index 8e05252cd..4f29e2d48 100644 --- a/install/homeassistant-core-install.sh +++ b/install/homeassistant-core-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color @@ -99,4 +99,4 @@ customize msg_info "Cleaning up" $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/homeassistant-install.sh b/install/homeassistant-install.sh index 02b612597..665edffb0 100644 --- a/install/homeassistant-install.sh +++ b/install/homeassistant-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/homebox-install.sh b/install/homebox-install.sh index 2f6ab1da8..6322b5691 100644 --- a/install/homebox-install.sh +++ b/install/homebox-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/sysadminsmedia/homebox source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/homebridge-install.sh b/install/homebridge-install.sh index 72b7242f4..f1ccead4e 100644 --- a/install/homebridge-install.sh +++ b/install/homebridge-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/homepage-install.sh b/install/homepage-install.sh index 21064860d..6e4617824 100644 --- a/install/homepage-install.sh +++ b/install/homepage-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/homer-install.sh b/install/homer-install.sh index 02da0cae8..340c7a6e7 100644 --- a/install/homer-install.sh +++ b/install/homer-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/hyperhdr-install.sh b/install/hyperhdr-install.sh index fa72c6b5c..2782755cc 100644 --- a/install/hyperhdr-install.sh +++ b/install/hyperhdr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/hyperion-install.sh b/install/hyperion-install.sh index d6feebc34..7e20c92bf 100644 --- a/install/hyperion-install.sh +++ b/install/hyperion-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/influxdb-install.sh b/install/influxdb-install.sh index 6c0905b60..5517aadc4 100644 --- a/install/influxdb-install.sh +++ b/install/influxdb-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/inspircd-install.sh b/install/inspircd-install.sh index 33cd9f51b..a2d01e619 100644 --- a/install/inspircd-install.sh +++ b/install/inspircd-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/iobroker-install.sh b/install/iobroker-install.sh index 057471185..e3980b3fb 100644 --- a/install/iobroker-install.sh +++ b/install/iobroker-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/iventoy-install.sh b/install/iventoy-install.sh index 681a5647c..f462daf79 100644 --- a/install/iventoy-install.sh +++ b/install/iventoy-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/jackett-install.sh b/install/jackett-install.sh index fe33d1e9f..ec0df050c 100644 --- a/install/jackett-install.sh +++ b/install/jackett-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/jellyfin-install.sh b/install/jellyfin-install.sh index 038fa83b6..1e0345123 100644 --- a/install/jellyfin-install.sh +++ b/install/jellyfin-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/jellyseerr-install.sh b/install/jellyseerr-install.sh index 916f1afc1..b406d961f 100644 --- a/install/jellyseerr-install.sh +++ b/install/jellyseerr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/jenkins-install.sh b/install/jenkins-install.sh index 3226a4ca6..1e4e820e8 100644 --- a/install/jenkins-install.sh +++ b/install/jenkins-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color @@ -33,4 +33,4 @@ customize msg_info "Cleaning up" $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/kavita-install.sh b/install/kavita-install.sh index 22991cacc..17928d039 100644 --- a/install/kavita-install.sh +++ b/install/kavita-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/keycloak-install.sh b/install/keycloak-install.sh index 4ed59b2c4..50f59ff8e 100644 --- a/install/keycloak-install.sh +++ b/install/keycloak-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/komga-install.sh b/install/komga-install.sh index 3659c7db7..cb6eb0162 100644 --- a/install/komga-install.sh +++ b/install/komga-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: madelyn (DysfunctionalProgramming) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/komodo-install.sh b/install/komodo-install.sh index 9650a4d3b..9e883b836 100644 --- a/install/komodo-install.sh +++ b/install/komodo-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://komo.do/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/kubo-install.sh b/install/kubo-install.sh index 8e1212544..18cdfbbea 100644 --- a/install/kubo-install.sh +++ b/install/kubo-install.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Co-Author: ulmentflam # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/lazylibrarian-install.sh b/install/lazylibrarian-install.sh index 014a0400c..f7ce40b15 100644 --- a/install/lazylibrarian-install.sh +++ b/install/lazylibrarian-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MountyMapleSyrup (MountyMapleSyrup) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/lidarr-install.sh b/install/lidarr-install.sh index e1e4233ba..eca49df35 100644 --- a/install/lidarr-install.sh +++ b/install/lidarr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/linkwarden-install.sh b/install/linkwarden-install.sh index 534a69caf..9af6c3c19 100644 --- a/install/linkwarden-install.sh +++ b/install/linkwarden-install.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/listmonk-install.sh b/install/listmonk-install.sh index b6688356c..a9cc9021d 100644 --- a/install/listmonk-install.sh +++ b/install/listmonk-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: bvdberg01 # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color @@ -77,4 +77,4 @@ msg_info "Cleaning up" rm -rf "/opt/listmonk_${RELEASE}_linux_amd64.tar.gz" $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/lldap-install.sh b/install/lldap-install.sh index 303a302c9..28c04dd6e 100644 --- a/install/lldap-install.sh +++ b/install/lldap-install.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Co-Author: remz1337 # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/lubelogger-install.sh b/install/lubelogger-install.sh index f22f740e5..d862011a2 100644 --- a/install/lubelogger-install.sh +++ b/install/lubelogger-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/mafl-install.sh b/install/mafl-install.sh index a8a63cf33..cbbc2b62a 100644 --- a/install/mafl-install.sh +++ b/install/mafl-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/magicmirror-install.sh b/install/magicmirror-install.sh index 999ab8488..d5e6b4eca 100644 --- a/install/magicmirror-install.sh +++ b/install/magicmirror-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/mariadb-install.sh b/install/mariadb-install.sh index 189003c4b..86066141c 100644 --- a/install/mariadb-install.sh +++ b/install/mariadb-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/matterbridge-install.sh b/install/matterbridge-install.sh index 8a81cc7c8..80d2976e0 100644 --- a/install/matterbridge-install.sh +++ b/install/matterbridge-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/Luligu/matterbridge/ source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/mattermost-install.sh b/install/mattermost-install.sh index f1ef9d0c7..4acabd278 100644 --- a/install/mattermost-install.sh +++ b/install/mattermost-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: Kaedon Cleland-Host (dracentis) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/mediamtx-install.sh b/install/mediamtx-install.sh index 85d49d9da..2debce117 100644 --- a/install/mediamtx-install.sh +++ b/install/mediamtx-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/medusa-install.sh b/install/medusa-install.sh index a1fe8d381..e98ca7b01 100644 --- a/install/medusa-install.sh +++ b/install/medusa-install.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/pymedusa/Medusa source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/memos-install.sh b/install/memos-install.sh index 05e95f404..050bfc512 100644 --- a/install/memos-install.sh +++ b/install/memos-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/usememos/memos source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/meshcentral-install.sh b/install/meshcentral-install.sh index 0735f1a0e..bd94893f9 100644 --- a/install/meshcentral-install.sh +++ b/install/meshcentral-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/metube-install.sh b/install/metube-install.sh index 735c890df..576e79eb8 100644 --- a/install/metube-install.sh +++ b/install/metube-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/alexta69/metube source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/mongodb-install.sh b/install/mongodb-install.sh index ce525fc36..0da63f129 100644 --- a/install/mongodb-install.sh +++ b/install/mongodb-install.sh @@ -4,7 +4,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/monica-install.sh b/install/monica-install.sh index 586bb7c53..ad5ad45f7 100644 --- a/install/monica-install.sh +++ b/install/monica-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: bvdberg01 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/motioneye-install.sh b/install/motioneye-install.sh index 58284becb..f247626f4 100644 --- a/install/motioneye-install.sh +++ b/install/motioneye-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/mqtt-install.sh b/install/mqtt-install.sh index 6cbeaf6bf..a5b331317 100644 --- a/install/mqtt-install.sh +++ b/install/mqtt-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/mylar3-install.sh b/install/mylar3-install.sh index f795decc8..c3ec371b7 100644 --- a/install/mylar3-install.sh +++ b/install/mylar3-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: davalanche # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/mylar3/mylar3 source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/myspeed-install.sh b/install/myspeed-install.sh index 443f8aa83..4a0004dae 100644 --- a/install/myspeed-install.sh +++ b/install/myspeed-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/gnmyt/myspeed source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" @@ -73,4 +73,4 @@ msg_info "Cleaning up" $STD apt-get -y autoremove rm -rf /opt/MySpeed-$RELEASE.zip $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/mysql-install.sh b/install/mysql-install.sh index cfade74e1..edd5ae0d9 100644 --- a/install/mysql-install.sh +++ b/install/mysql-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.mysql.com/products/community | https://www.phpmyadmin.net source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/n8n-install.sh b/install/n8n-install.sh index ef04b5383..e18e67d6d 100644 --- a/install/n8n-install.sh +++ b/install/n8n-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/navidrome-install.sh b/install/navidrome-install.sh index 1cb0277b8..db1dec84c 100644 --- a/install/navidrome-install.sh +++ b/install/navidrome-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/neo4j-install.sh b/install/neo4j-install.sh index 1de663abc..3e78744f2 100644 --- a/install/neo4j-install.sh +++ b/install/neo4j-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: havardthom # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/netbox-install.sh b/install/netbox-install.sh index 95eaf20fb..a80b9ad9a 100644 --- a/install/netbox-install.sh +++ b/install/netbox-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: bvdberg01 # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/nextcloudpi-install.sh b/install/nextcloudpi-install.sh index 327434b95..fb1a1807d 100644 --- a/install/nextcloudpi-install.sh +++ b/install/nextcloudpi-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/nextpvr-install.sh b/install/nextpvr-install.sh index b8a6cdaea..2ae75d20c 100644 --- a/install/nextpvr-install.sh +++ b/install/nextpvr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 communtiy-scripts ORG # Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/nginxproxymanager-install.sh b/install/nginxproxymanager-install.sh index 87664fb9e..9cb11026f 100644 --- a/install/nginxproxymanager-install.sh +++ b/install/nginxproxymanager-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/nocodb-install.sh b/install/nocodb-install.sh index c0da18949..73ae949a1 100644 --- a/install/nocodb-install.sh +++ b/install/nocodb-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/node-red-install.sh b/install/node-red-install.sh index 06a706e8f..f7e74c50c 100644 --- a/install/node-red-install.sh +++ b/install/node-red-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/notifiarr-install.sh b/install/notifiarr-install.sh index 3e2bd1ec8..8563f0315 100644 --- a/install/notifiarr-install.sh +++ b/install/notifiarr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/ntfy-install.sh b/install/ntfy-install.sh index cc93fc73e..fd8660c37 100644 --- a/install/ntfy-install.sh +++ b/install/ntfy-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/nzbget-install.sh b/install/nzbget-install.sh index ee63eab04..cf8333ae5 100644 --- a/install/nzbget-install.sh +++ b/install/nzbget-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: havardthom # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/octoprint-install.sh b/install/octoprint-install.sh index 2ff3bdd46..e47771efe 100644 --- a/install/octoprint-install.sh +++ b/install/octoprint-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/ollama-install.sh b/install/ollama-install.sh index a43d124dd..4e210f15f 100644 --- a/install/ollama-install.sh +++ b/install/ollama-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: havardthom # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/omada-install.sh b/install/omada-install.sh index c8de262ea..542542924 100644 --- a/install/omada-install.sh +++ b/install/omada-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/ombi-install.sh b/install/ombi-install.sh index 696795ada..9ec420701 100644 --- a/install/ombi-install.sh +++ b/install/ombi-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/omv-install.sh b/install/omv-install.sh index c0d670192..4191022aa 100644 --- a/install/omv-install.sh +++ b/install/omv-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/onedev-install.sh b/install/onedev-install.sh index 86d74e5ca..add4dab09 100644 --- a/install/onedev-install.sh +++ b/install/onedev-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/opengist-install.sh b/install/opengist-install.sh index 7893819f9..9a3ce1f20 100644 --- a/install/opengist-install.sh +++ b/install/opengist-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: Jonathan (jd-apprentice) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/openhab-install.sh b/install/openhab-install.sh index 675a30e67..da40d511e 100644 --- a/install/openhab-install.sh +++ b/install/openhab-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/openobserve-install.sh b/install/openobserve-install.sh index c64084ae5..245267a36 100644 --- a/install/openobserve-install.sh +++ b/install/openobserve-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/openwebui-install.sh b/install/openwebui-install.sh index 454902568..87bbab553 100644 --- a/install/openwebui-install.sh +++ b/install/openwebui-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: havardthom # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/overseerr-install.sh b/install/overseerr-install.sh index 1bc15a83c..e9537f181 100644 --- a/install/overseerr-install.sh +++ b/install/overseerr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/owncast-install.sh b/install/owncast-install.sh index 3ada3c8f6..5c686b6de 100644 --- a/install/owncast-install.sh +++ b/install/owncast-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/pairdrop-install.sh b/install/pairdrop-install.sh index 46b799be0..9cc03912b 100644 --- a/install/pairdrop-install.sh +++ b/install/pairdrop-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/paperless-ngx-install.sh b/install/paperless-ngx-install.sh index 16c56ead0..050ccc8f8 100644 --- a/install/paperless-ngx-install.sh +++ b/install/paperless-ngx-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/part-db-install.sh b/install/part-db-install.sh index 1429649fd..b4195425a 100644 --- a/install/part-db-install.sh +++ b/install/part-db-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: bvdberg01 # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/pbs-install.sh b/install/pbs-install.sh index c14a2c123..5c1fea437 100644 --- a/install/pbs-install.sh +++ b/install/pbs-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/peanut-install.sh b/install/peanut-install.sh index 745278e78..bfbd9a757 100644 --- a/install/peanut-install.sh +++ b/install/peanut-install.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Co-Author: remz1337 # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/petio-install.sh b/install/petio-install.sh index 13108368d..6065f79ca 100644 --- a/install/petio-install.sh +++ b/install/petio-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/photoprism-install.sh b/install/photoprism-install.sh index ca02c4e9d..90635ad19 100644 --- a/install/photoprism-install.sh +++ b/install/photoprism-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/phpipam-install.sh b/install/phpipam-install.sh index a1343c97a..2defe00c8 100644 --- a/install/phpipam-install.sh +++ b/install/phpipam-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: bvdberg01 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/pialert-install.sh b/install/pialert-install.sh index 8b48ea8e5..e921f04d8 100644 --- a/install/pialert-install.sh +++ b/install/pialert-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/pihole-install.sh b/install/pihole-install.sh index e5a6f5819..fa8dfb931 100644 --- a/install/pihole-install.sh +++ b/install/pihole-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/pingvin-install.sh b/install/pingvin-install.sh index 253e107a9..186ca76e4 100644 --- a/install/pingvin-install.sh +++ b/install/pingvin-install.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Co-Author: michelroegl-brunner # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/plex-install.sh b/install/plex-install.sh index f80bb887f..218bb7d5e 100644 --- a/install/plex-install.sh +++ b/install/plex-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/pocketbase-install.sh b/install/pocketbase-install.sh index d0efa7edc..738820681 100644 --- a/install/pocketbase-install.sh +++ b/install/pocketbase-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/pocketid-install.sh b/install/pocketid-install.sh index c330ad365..38f7aa8ce 100644 --- a/install/pocketid-install.sh +++ b/install/pocketid-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: Snarkenfaugister -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/stonith404/pocket-id source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/podman-homeassistant-install.sh b/install/podman-homeassistant-install.sh index cff4b32b3..a988a3c6e 100644 --- a/install/podman-homeassistant-install.sh +++ b/install/podman-homeassistant-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/podman-install.sh b/install/podman-install.sh index 2b496ba75..a12678b8f 100644 --- a/install/podman-install.sh +++ b/install/podman-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/postgresql-install.sh b/install/postgresql-install.sh index 31eeec22e..a23254998 100644 --- a/install/postgresql-install.sh +++ b/install/postgresql-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/projectsend-install.sh b/install/projectsend-install.sh index e6f11732d..b7ae2307e 100644 --- a/install/projectsend-install.sh +++ b/install/projectsend-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: bvdberg01 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/prometheus-alertmanager-install.sh b/install/prometheus-alertmanager-install.sh index ad854ccdc..e7ba84b01 100755 --- a/install/prometheus-alertmanager-install.sh +++ b/install/prometheus-alertmanager-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: Andy Grunwald (andygrunwald) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://prometheus.io/ source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/prometheus-install.sh b/install/prometheus-install.sh index cbabb93ae..bd5e81680 100644 --- a/install/prometheus-install.sh +++ b/install/prometheus-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://prometheus.io/ source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/prometheus-pve-exporter-install.sh b/install/prometheus-pve-exporter-install.sh index a1e3c8918..bf9b47d9d 100644 --- a/install/prometheus-pve-exporter-install.sh +++ b/install/prometheus-pve-exporter-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: Andy Grunwald (andygrunwald) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/prometheus-pve/prometheus-pve-exporter source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/prowlarr-install.sh b/install/prowlarr-install.sh index 7eaf6f6d7..6bd08a012 100644 --- a/install/prowlarr-install.sh +++ b/install/prowlarr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/ps5-mqtt-install.sh b/install/ps5-mqtt-install.sh index be880e463..5df9bac9c 100644 --- a/install/ps5-mqtt-install.sh +++ b/install/ps5-mqtt-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: liecno -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/FunkeyFlo/ps5-mqtt/ source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/qbittorrent-install.sh b/install/qbittorrent-install.sh index 8decce6a6..112d63ec7 100644 --- a/install/qbittorrent-install.sh +++ b/install/qbittorrent-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/rabbitmq-install.sh b/install/rabbitmq-install.sh index ac867583b..75da78be7 100644 --- a/install/rabbitmq-install.sh +++ b/install/rabbitmq-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://www.rabbitmq.com/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/radarr-install.sh b/install/radarr-install.sh index 93ae83455..383436537 100644 --- a/install/radarr-install.sh +++ b/install/radarr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/rdtclient-install.sh b/install/rdtclient-install.sh index e952f0a8b..108c2ca18 100644 --- a/install/rdtclient-install.sh +++ b/install/rdtclient-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/readarr-install.sh b/install/readarr-install.sh index 79e88132c..90ca26611 100644 --- a/install/readarr-install.sh +++ b/install/readarr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/readeck-install.sh b/install/readeck-install.sh index d60edf162..ac4da1637 100644 --- a/install/readeck-install.sh +++ b/install/readeck-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/recyclarr-install.sh b/install/recyclarr-install.sh index ecc033511..cabcaeb2d 100644 --- a/install/recyclarr-install.sh +++ b/install/recyclarr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MrYadro # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/redis-install.sh b/install/redis-install.sh index c6cd900ae..ac954096a 100644 --- a/install/redis-install.sh +++ b/install/redis-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/rtsptoweb-install.sh b/install/rtsptoweb-install.sh index 5928cdec9..8149988f4 100644 --- a/install/rtsptoweb-install.sh +++ b/install/rtsptoweb-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/runtipi-install.sh b/install/runtipi-install.sh index 26d6ed5f1..e10125811 100644 --- a/install/runtipi-install.sh +++ b/install/runtipi-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/sabnzbd-install.sh b/install/sabnzbd-install.sh index 5aca30d50..e1c7629e6 100644 --- a/install/sabnzbd-install.sh +++ b/install/sabnzbd-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/semaphore-install.sh b/install/semaphore-install.sh index 2294ca227..c6818fd28 100644 --- a/install/semaphore-install.sh +++ b/install/semaphore-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color @@ -84,4 +84,4 @@ msg_info "Cleaning up" rm -rf semaphore_${RELEASE}_linux_amd64.deb $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/sftpgo-install.sh b/install/sftpgo-install.sh index bffec81cc..94068379c 100644 --- a/install/sftpgo-install.sh +++ b/install/sftpgo-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/shinobi-install.sh b/install/shinobi-install.sh index 9d4c64fe4..3993dda49 100644 --- a/install/shinobi-install.sh +++ b/install/shinobi-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/silverbullet-install.sh b/install/silverbullet-install.sh index feaa59694..5bb0289ff 100644 --- a/install/silverbullet-install.sh +++ b/install/silverbullet-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: Dominik Siebel (dsiebel) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/smokeping-install.sh b/install/smokeping-install.sh index 5b97b7117..54e1c1a6f 100644 --- a/install/smokeping-install.sh +++ b/install/smokeping-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/snipeit-install.sh b/install/snipeit-install.sh index e3c5e1b9a..e1e2dcdf3 100644 --- a/install/snipeit-install.sh +++ b/install/snipeit-install.sh @@ -4,7 +4,7 @@ #Copyright (c) 2021-2025 community-scripts ORG # Author: Michel Roegl-Brunner (michelroegl-brunner) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/sonarr-install.sh b/install/sonarr-install.sh index 353f47a98..9178988db 100644 --- a/install/sonarr-install.sh +++ b/install/sonarr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/spoolman-install.sh b/install/spoolman-install.sh index 38a53c16d..0a40e7b9f 100644 --- a/install/spoolman-install.sh +++ b/install/spoolman-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/Donkie/Spoolman source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/sqlserver2022-install.sh b/install/sqlserver2022-install.sh index 7e06fe03d..47609c6ca 100644 --- a/install/sqlserver2022-install.sh +++ b/install/sqlserver2022-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: Kristian Skov # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/stirling-pdf-install.sh b/install/stirling-pdf-install.sh index 3fb5839a1..ed7ff26e0 100644 --- a/install/stirling-pdf-install.sh +++ b/install/stirling-pdf-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/syncthing-install.sh b/install/syncthing-install.sh index 6f0458f30..53ff2b420 100644 --- a/install/syncthing-install.sh +++ b/install/syncthing-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/tandoor-install.sh b/install/tandoor-install.sh index 581f8c38b..60c478c05 100644 --- a/install/tandoor-install.sh +++ b/install/tandoor-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/tasmoadmin-install.sh b/install/tasmoadmin-install.sh index f9eb9ad28..c708538aa 100644 --- a/install/tasmoadmin-install.sh +++ b/install/tasmoadmin-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/tautulli-install.sh b/install/tautulli-install.sh index 42ad4dccf..5ba82cb43 100644 --- a/install/tautulli-install.sh +++ b/install/tautulli-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/tdarr-install.sh b/install/tdarr-install.sh index 23303b30e..d777f544f 100644 --- a/install/tdarr-install.sh +++ b/install/tdarr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/technitiumdns-install.sh b/install/technitiumdns-install.sh index 3567030bf..236ad232d 100644 --- a/install/technitiumdns-install.sh +++ b/install/technitiumdns-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/teddycloud-install.sh b/install/teddycloud-install.sh index d81399d15..b2ee5f791 100644 --- a/install/teddycloud-install.sh +++ b/install/teddycloud-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: Dominik Siebel (dsiebel) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/the-lounge-install.sh b/install/the-lounge-install.sh index 81a656ec6..2e84d15f9 100644 --- a/install/the-lounge-install.sh +++ b/install/the-lounge-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: kristocopani # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/threadfin-install.sh b/install/threadfin-install.sh index 3c78983f2..0d399a4c3 100644 --- a/install/threadfin-install.sh +++ b/install/threadfin-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/tianji-install.sh b/install/tianji-install.sh index dd28ff4f0..bd41ac183 100644 --- a/install/tianji-install.sh +++ b/install/tianji-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/msgbyte/tianji source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/traccar-install.sh b/install/traccar-install.sh index ebed5a913..fc0f721f8 100644 --- a/install/traccar-install.sh +++ b/install/traccar-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/traefik-install.sh b/install/traefik-install.sh index 185c26834..be204a8c1 100644 --- a/install/traefik-install.sh +++ b/install/traefik-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/transmission-install.sh b/install/transmission-install.sh index 734a50d05..59f104791 100644 --- a/install/transmission-install.sh +++ b/install/transmission-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/trilium-install.sh b/install/trilium-install.sh index e62695beb..c1f3b5d70 100644 --- a/install/trilium-install.sh +++ b/install/trilium-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/typesense-install.sh b/install/typesense-install.sh index 897eda5c2..c02b535ab 100644 --- a/install/typesense-install.sh +++ b/install/typesense-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: tlissak -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://typesense.org/ source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/ubuntu-install.sh b/install/ubuntu-install.sh index 7d58cdaae..e15c8216b 100644 --- a/install/ubuntu-install.sh +++ b/install/ubuntu-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/umami-install.sh b/install/umami-install.sh index 07b019984..b23cc31a9 100644 --- a/install/umami-install.sh +++ b/install/umami-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/umbrel-install.sh b/install/umbrel-install.sh index d39d3762d..9a26dd8ce 100644 --- a/install/umbrel-install.sh +++ b/install/umbrel-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/unbound-install.sh b/install/unbound-install.sh index 39cde037e..44b4e0852 100644 --- a/install/unbound-install.sh +++ b/install/unbound-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: wimb0 # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/unifi-install.sh b/install/unifi-install.sh index 08af10cb9..43a355c33 100644 --- a/install/unifi-install.sh +++ b/install/unifi-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/unmanic-install.sh b/install/unmanic-install.sh index 8c90ea432..da0ab319d 100644 --- a/install/unmanic-install.sh +++ b/install/unmanic-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/uptimekuma-install.sh b/install/uptimekuma-install.sh index f6e79a68d..a80b61286 100644 --- a/install/uptimekuma-install.sh +++ b/install/uptimekuma-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/urbackupserver-install.sh b/install/urbackupserver-install.sh index 120e1b933..13fdba9d5 100644 --- a/install/urbackupserver-install.sh +++ b/install/urbackupserver-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: Kristian Skov -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/vaultwarden-install.sh b/install/vaultwarden-install.sh index bcd10455a..43027e84a 100644 --- a/install/vaultwarden-install.sh +++ b/install/vaultwarden-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/vikunja-install.sh b/install/vikunja-install.sh index b4da4a748..1368fd467 100644 --- a/install/vikunja-install.sh +++ b/install/vikunja-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/wallos-install.sh b/install/wallos-install.sh index 7f2191688..dd627dfbe 100644 --- a/install/wallos-install.sh +++ b/install/wallos-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/ellite/wallos source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/wastebin-install.sh b/install/wastebin-install.sh index 994d80f75..f9af4eec4 100644 --- a/install/wastebin-install.sh +++ b/install/wastebin-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/matze/wastebin source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/watchyourlan-install.sh b/install/watchyourlan-install.sh index 224624730..038a2d12c 100644 --- a/install/watchyourlan-install.sh +++ b/install/watchyourlan-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/wavelog-install.sh b/install/wavelog-install.sh index 0df0ef312..b8be61bb9 100644 --- a/install/wavelog-install.sh +++ b/install/wavelog-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: Don Locke (DonLocke) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/wavelog/wavelog source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" diff --git a/install/whisparr-install.sh b/install/whisparr-install.sh index 22573c0b3..f8addd6d6 100644 --- a/install/whisparr-install.sh +++ b/install/whisparr-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/whoogle-install.sh b/install/whoogle-install.sh index 64886a111..b4787123f 100644 --- a/install/whoogle-install.sh +++ b/install/whoogle-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/wikijs-install.sh b/install/wikijs-install.sh index 1a41e4245..b13f5ef6f 100644 --- a/install/wikijs-install.sh +++ b/install/wikijs-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/wireguard-install.sh b/install/wireguard-install.sh index 545c9de83..05406b623 100644 --- a/install/wireguard-install.sh +++ b/install/wireguard-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/wordpress-install.sh b/install/wordpress-install.sh index 665b105ab..96a2e788d 100644 --- a/install/wordpress-install.sh +++ b/install/wordpress-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 communtiy-scripts ORG # Author: MickLesk (Canbiz) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://wordpress.org/ source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" @@ -82,4 +82,4 @@ msg_info "Cleaning up" rm -rf /var/www/html/latest.zip $STD apt-get autoremove $STD apt-get autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/yunohost-install.sh b/install/yunohost-install.sh index e43fd0b97..12db5421d 100644 --- a/install/yunohost-install.sh +++ b/install/yunohost-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/zabbix-install.sh b/install/zabbix-install.sh index 265dcd6b9..85f7fa79f 100644 --- a/install/zabbix-install.sh +++ b/install/zabbix-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/zammad-install.sh b/install/zammad-install.sh index 7a87b51e2..00738a10e 100644 --- a/install/zammad-install.sh +++ b/install/zammad-install.sh @@ -3,7 +3,7 @@ #Copyright (c) 2021-2025 community-scripts ORG # Author: Michel Roegl-Brunner (michelroegl-brunner) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color @@ -58,4 +58,4 @@ customize msg_info "Cleaning up" $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/zigbee2mqtt-install.sh b/install/zigbee2mqtt-install.sh index faf08b577..1d90a6b1d 100644 --- a/install/zigbee2mqtt-install.sh +++ b/install/zigbee2mqtt-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/zipline-install.sh b/install/zipline-install.sh index 4ac4c6fca..ef55c9f25 100644 --- a/install/zipline-install.sh +++ b/install/zipline-install.sh @@ -4,7 +4,7 @@ # Author: tteck # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/diced/zipline source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" @@ -93,4 +93,4 @@ customize msg_info "Cleaning up" $STD apt-get -y autoremove $STD apt-get -y autoclean -msg_ok "Cleaned" \ No newline at end of file +msg_ok "Cleaned" diff --git a/install/zoraxy-install.sh b/install/zoraxy-install.sh index 860da7d4e..9052b1acc 100644 --- a/install/zoraxy-install.sh +++ b/install/zoraxy-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/install/zwave-js-ui-install.sh b/install/zwave-js-ui-install.sh index 2c8a80c0b..7bb1a8e5d 100644 --- a/install/zwave-js-ui-install.sh +++ b/install/zwave-js-ui-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" color diff --git a/json/actualbudget.json b/json/actualbudget.json index b38de5a0a..bbd64fc8f 100644 --- a/json/actualbudget.json +++ b/json/actualbudget.json @@ -9,7 +9,7 @@ "updateable": true, "privileged": false, "interface_port": 5006, - "documentation": "https://github.com/community-scripts/ProxmoxVE/discussions/807", + "documentation": "https://github.com/Dracentis/ProxmoxVe/discussions/807", "website": "https://actualbudget.org/", "logo": "https://raw.githubusercontent.com/actualbudget/actual/master/packages/desktop-client/public/maskable-512x512.png", "description": "Actual Budget is a super fast and privacy-focused app for managing your finances. At its heart is the well proven and much loved Envelope Budgeting methodology.", @@ -31,4 +31,4 @@ "password": null }, "notes": [] -} \ No newline at end of file +} diff --git a/json/cron-update-lxcs.json b/json/cron-update-lxcs.json index eeb6311f2..2f2bc1c26 100644 --- a/json/cron-update-lxcs.json +++ b/json/cron-update-lxcs.json @@ -36,9 +36,9 @@ "type": "info" }, { - "text": "To exclude LXCs from updating, edit the crontab using `crontab -e` and add CTID as shown in the example below:\n\n\n\n`0 0 * * 0 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin /bin/bash -c '$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/update-lxcs-cron.sh)' -s 103 111 >>/var/log/update-lxcs-cron.log 2>/dev/null`", + "text": "To exclude LXCs from updating, edit the crontab using `crontab -e` and add CTID as shown in the example below:\n\n\n\n`0 0 * * 0 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin /bin/bash -c '$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/update-lxcs-cron.sh)' -s 103 111 >>/var/log/update-lxcs-cron.log 2>/dev/null`", "type": "info" } ] -} \ No newline at end of file +} diff --git a/json/filebrowser.json b/json/filebrowser.json index 44b023bee..aba444d31 100644 --- a/json/filebrowser.json +++ b/json/filebrowser.json @@ -11,7 +11,7 @@ "interface_port": 8080, "documentation": null, "website": "https://filebrowser.org/features", - "logo": "https://github.com/community-scripts/ProxmoxVE/blob/main/misc/images/filebrowser.png?raw=true", + "logo": "https://github.com/Dracentis/ProxmoxVe/blob/main/misc/images/filebrowser.png?raw=true", "description": "File Browser offers a user-friendly web interface for managing files within a designated directory. It allows you to perform various actions such as uploading, deleting, previewing, renaming, and editing files.", "install_methods": [ { @@ -36,4 +36,4 @@ "type": "warning" } ] -} \ No newline at end of file +} diff --git a/json/fstrim.json b/json/fstrim.json index 1196fc913..ac2ff0a1f 100644 --- a/json/fstrim.json +++ b/json/fstrim.json @@ -9,7 +9,7 @@ "updateable": false, "privileged": false, "interface_port": null, - "documentation": "https://github.com/community-scripts/ProxmoxVE/discussions/805", + "documentation": "https://github.com/Dracentis/ProxmoxVe/discussions/805", "website": null, "logo": "https://raw.githubusercontent.com/loganmarchione/homelab-svg-assets/main/assets/lxc.svg", "description": "This maintains SSD performance by managing unused blocks. Thin-provisioned storage systems also require management to prevent unnecessary storage use. VMs automate fstrim, while LXC containers need manual or automated fstrim processes for optimal performance.", diff --git a/json/heimdall-dashboard.json b/json/heimdall-dashboard.json index 7f84a5c13..4914c7c20 100644 --- a/json/heimdall-dashboard.json +++ b/json/heimdall-dashboard.json @@ -11,7 +11,7 @@ "interface_port": 7990, "documentation": null, "website": "https://heimdall.site/", - "logo": "https://github.com/community-scripts/ProxmoxVE/blob/main/misc/images/heimdall.png?raw=true", + "logo": "https://github.com/Dracentis/ProxmoxVe/blob/main/misc/images/heimdall.png?raw=true", "description": "Heimdall Dashboard is a self-hosted, web-based dashboard for managing and monitoring the health of applications and servers. It allows you to keep track of the status of your systems from a single, centralized location, and receive notifications when things go wrong. With Heimdall Dashboard, you have full control over your data and can customize it to meet your specific needs. Self-hosting the dashboard gives you the flexibility to run it on your own infrastructure, making it a suitable solution for organizations that prioritize data security and privacy.", "install_methods": [ { @@ -31,4 +31,4 @@ "password": null }, "notes": [] -} \ No newline at end of file +} diff --git a/json/keycloak.json b/json/keycloak.json index bd9958923..f5cb3fa11 100644 --- a/json/keycloak.json +++ b/json/keycloak.json @@ -9,7 +9,7 @@ "updateable": false, "privileged": false, "interface_port": 8080, - "documentation": "https://github.com/community-scripts/ProxmoxVE/discussions/193", + "documentation": "https://github.com/Dracentis/ProxmoxVe/discussions/193", "website": "https://www.keycloak.org/", "logo": "https://www.keycloak.org/resources/images/logo.svg", "description": "Keycloak is an open-source identity and access management solution that provides centralized authentication and authorization for modern applications and services. It enables organizations to secure their applications and services with a single sign-on (SSO) solution, reducing the need for users to remember multiple login credentials. Keycloak supports various authentication protocols, including SAML, OAuth, and OpenID Connect, and integrates with a wide range of applications and services. With Keycloak, administrators can manage user identities, define security policies, and monitor access to their applications and services. The software is designed to be scalable, flexible, and easy to use, making it a valuable tool for enhancing the security and usability of modern applications and services.", diff --git a/json/linkwarden.json b/json/linkwarden.json index 974afebfe..809b491a6 100644 --- a/json/linkwarden.json +++ b/json/linkwarden.json @@ -32,8 +32,8 @@ }, "notes": [ { - "text": "Linkwarden > 2.8.2 needs Monolith, More info: `https://github.com/community-scripts/ProxmoxVE/discussions/305`", + "text": "Linkwarden > 2.8.2 needs Monolith, More info: `https://github.com/Dracentis/ProxmoxVe/discussions/305`", "type": "info" } ] -} \ No newline at end of file +} diff --git a/json/mariadb.json b/json/mariadb.json index 886b76784..03047ebea 100644 --- a/json/mariadb.json +++ b/json/mariadb.json @@ -9,7 +9,7 @@ "updateable": false, "privileged": false, "interface_port": 3306, - "documentation": "https://github.com/community-scripts/ProxmoxVE/discussions/192", + "documentation": "https://github.com/Dracentis/ProxmoxVe/discussions/192", "website": "https://mariadb.org/", "logo": "https://raw.githubusercontent.com/loganmarchione/homelab-svg-assets/main/assets/mariadb.svg", "description": "MariaDB is a fork of the popular MySQL database management system that is developed and maintained by the open-source community. It is also commercially supported, offering enterprise-level features and support for organizations that require them. MariaDB aims to maintain high compatibility with MySQL, ensuring a drop-in replacement capability.", diff --git a/json/microcode.json b/json/microcode.json index 10d3c6ff6..ff4de4c7b 100644 --- a/json/microcode.json +++ b/json/microcode.json @@ -11,7 +11,7 @@ "interface_port": null, "documentation": null, "website": null, - "logo": "https://github.com/community-scripts/ProxmoxVE/blob/main/misc/images/processor.png?raw=true", + "logo": "https://github.com/Dracentis/ProxmoxVe/blob/main/misc/images/processor.png?raw=true", "description": "Processor Microcode is a layer of low-level software that runs on the processor and provides patches or updates to its firmware. Microcode updates can fix hardware bugs, improve performance, and enhance security features of the processor.\r\n\r\nIt's important to note that the availability of firmware update mechanisms, such as Intel's Management Engine (ME) or AMD's Platform Security Processor (PSP), may vary depending on the processor and its specific implementation. Therefore, it's recommended to consult the documentation for your processor to confirm whether firmware updates can be applied through the operating system.", "install_methods": [ { diff --git a/json/monitor-all.json b/json/monitor-all.json index 52a14fd10..5b4271b8a 100644 --- a/json/monitor-all.json +++ b/json/monitor-all.json @@ -11,7 +11,7 @@ "interface_port": null, "documentation": null, "website": null, - "logo": "https://github.com/community-scripts/ProxmoxVE/blob/main/misc/images/monitor.png?raw=true", + "logo": "https://github.com/Dracentis/ProxmoxVe/blob/main/misc/images/monitor.png?raw=true", "description": "This script will add Monitor-All to Proxmox VE, which will monitor the status of all your instances, both containers and virtual machines, excluding templates and user-defined ones, and automatically restart or reset them if they become unresponsive. This is particularly useful if you're experiencing problems with Home Assistant becoming non-responsive every few days/weeks. Monitor-All also maintains a log of the entire process, which can be helpful for troubleshooting and monitoring purposes.\r\n\r\n\ud83d\udec8 Virtual machines without the QEMU guest agent installed must be excluded.\r\n\ud83d\udec8 Prior to generating any new CT/VM not found in this repository, it's necessary to halt Proxmox VE Monitor-All by running systemctl stop ping-instances.", "install_methods": [ { diff --git a/json/mqtt.json b/json/mqtt.json index 5685ac331..a2d12c94c 100644 --- a/json/mqtt.json +++ b/json/mqtt.json @@ -32,8 +32,8 @@ }, "notes": [ { - "text": "You can find post-install info here: `https://github.com/community-scripts/ProxmoxVE/discussions/782`", + "text": "You can find post-install info here: `https://github.com/Dracentis/ProxmoxVe/discussions/782`", "type": "info" } ] -} \ No newline at end of file +} diff --git a/json/nextcloud-vm.json b/json/nextcloud-vm.json index 3bd500d75..ed97798d5 100644 --- a/json/nextcloud-vm.json +++ b/json/nextcloud-vm.json @@ -32,7 +32,7 @@ }, "notes": [ { - "text": "This VM requires extra installation steps, see install guide at `https://github.com/community-scripts/ProxmoxVE/discussions/144`", + "text": "This VM requires extra installation steps, see install guide at `https://github.com/Dracentis/ProxmoxVe/discussions/144`", "type": "warning" } ] diff --git a/json/nocodb.json b/json/nocodb.json index b94b78264..ec75b93b4 100644 --- a/json/nocodb.json +++ b/json/nocodb.json @@ -11,7 +11,7 @@ "interface_port": 8080, "documentation": null, "website": "https://www.nocodb.com/", - "logo": "https://github.com/community-scripts/ProxmoxVE/blob/main/misc/images/nocodb.png?raw=true", + "logo": "https://github.com/Dracentis/ProxmoxVe/blob/main/misc/images/nocodb.png?raw=true", "description": "NocoDB is a document-oriented database management system. It uses the NoSQL (Not Only SQL) data model, which allows for more flexible and scalable data storage than traditional relational databases. NoCoDB stores data in JSON format, making it easier to manage and query complex data structures, and supports a range of data types, including strings, numbers, arrays, and objects. The software provides a web-based interface for managing and querying data, and includes features such as real-time data synchronization, auto-indexing, and full-text search. NoCoDB is designed to be scalable, and can be used for a range of applications, from small projects to large enterprise systems. The software is free and open-source, and is designed to be easy to use and integrate with other applications.", "install_methods": [ { @@ -31,4 +31,4 @@ "password": null }, "notes": [] -} \ No newline at end of file +} diff --git a/json/omv.json b/json/omv.json index 41fe9c20e..aa264b4e6 100644 --- a/json/omv.json +++ b/json/omv.json @@ -32,7 +32,7 @@ }, "notes": [ { - "text": "Running OVM in a LXC container may require a complicated disk setup, consider using a VM instead. More info: `https://github.com/community-scripts/ProxmoxVE/discussions/175`", + "text": "Running OVM in a LXC container may require a complicated disk setup, consider using a VM instead. More info: `https://github.com/Dracentis/ProxmoxVe/discussions/175`", "type": "warning" } ] diff --git a/json/openobserve.json b/json/openobserve.json index 231297e69..119337d29 100644 --- a/json/openobserve.json +++ b/json/openobserve.json @@ -11,7 +11,7 @@ "interface_port": 5080, "documentation": null, "website": "https://openobserve.ai/", - "logo": "https://github.com/community-scripts/ProxmoxVE/blob/main/misc/images/openobsecure.png?raw=true", + "logo": "https://github.com/Dracentis/ProxmoxVe/blob/main/misc/images/openobsecure.png?raw=true", "description": "OpenObserve is a simple yet sophisticated log search, infrastructure monitoring, and APM solution.", "install_methods": [ { @@ -36,4 +36,4 @@ "type": "info" } ] -} \ No newline at end of file +} diff --git a/json/owncloud-vm.json b/json/owncloud-vm.json index c7b2175a3..192640fb7 100644 --- a/json/owncloud-vm.json +++ b/json/owncloud-vm.json @@ -32,7 +32,7 @@ }, "notes": [ { - "text": "This VM requires extra installation steps, see install guide at `https://github.com/community-scripts/ProxmoxVE/discussions/144`", + "text": "This VM requires extra installation steps, see install guide at `https://github.com/Dracentis/ProxmoxVe/discussions/144`", "type": "warning" } ] diff --git a/json/photoprism.json b/json/photoprism.json index 42a15c3c9..ad25b997e 100644 --- a/json/photoprism.json +++ b/json/photoprism.json @@ -11,7 +11,7 @@ "interface_port": 2342, "documentation": null, "website": "https://photoprism.app/", - "logo": "https://github.com/community-scripts/ProxmoxVE/blob/main/misc/images/photoprism.png?raw=true", + "logo": "https://github.com/Dracentis/ProxmoxVe/blob/main/misc/images/photoprism.png?raw=true", "description": "PhotoPrism is an AI-Powered Photos App for the Decentralized Web. It makes use of the latest technologies to tag and find pictures automatically without getting in your way.", "install_methods": [ { diff --git a/json/pimox-haos-vm.json b/json/pimox-haos-vm.json index 2a90e5c75..775ca7fa3 100644 --- a/json/pimox-haos-vm.json +++ b/json/pimox-haos-vm.json @@ -11,7 +11,7 @@ "interface_port": 8123, "documentation": null, "website": "https://github.com/jiangcuo/Proxmox-Port", - "logo": "https://github.com/community-scripts/ProxmoxVE/blob/main/misc/images/pimox.png?raw=true", + "logo": "https://github.com/Dracentis/ProxmoxVe/blob/main/misc/images/pimox.png?raw=true", "description": "The script automates the manual process of finding, downloading and extracting the aarch64 (qcow2) disk image provided by the Home Assistant Team, creating a VM with user defined settings, importing and attaching the disk, setting the boot order and starting the VM.", "install_methods": [ { diff --git a/json/scaling-governor.json b/json/scaling-governor.json index 3c4be95b8..f0e64073a 100644 --- a/json/scaling-governor.json +++ b/json/scaling-governor.json @@ -11,7 +11,7 @@ "interface_port": null, "documentation": "https://www.kernel.org/doc/html/latest/admin-guide/pm/cpufreq.html?#generic-scaling-governors", "website": null, - "logo": "https://github.com/community-scripts/ProxmoxVE/blob/main/misc/images/cpu.png?raw=true", + "logo": "https://github.com/Dracentis/ProxmoxVe/blob/main/misc/images/cpu.png?raw=true", "description": "The CPU scaling governor determines how the CPU frequency is adjusted based on the workload, with the goal of either conserving power or improving performance. By scaling the frequency up or down, the operating system can optimize the CPU usage and conserve energy when possible. Generic Scaling Governors", "install_methods": [ { diff --git a/json/snipeit.json b/json/snipeit.json index c12cd102d..75f0f67a6 100644 --- a/json/snipeit.json +++ b/json/snipeit.json @@ -32,7 +32,7 @@ }, "notes": [ { - "text": "Post Install: `https://github.com/community-scripts/ProxmoxVE/discussions/671`", + "text": "Post Install: `https://github.com/Dracentis/ProxmoxVe/discussions/671`", "type": "info" } ] diff --git a/json/whoogle.json b/json/whoogle.json index 9ae032800..b8f873fc3 100644 --- a/json/whoogle.json +++ b/json/whoogle.json @@ -11,7 +11,7 @@ "interface_port": 5000, "documentation": null, "website": "https://github.com/benbusby/whoogle-search", - "logo": "https://github.com/community-scripts/ProxmoxVE/blob/main/misc/images/whoogle.png?raw=true", + "logo": "https://github.com/Dracentis/ProxmoxVe/blob/main/misc/images/whoogle.png?raw=true", "description": "Get Google search results, but without any ads, javascript, AMP links, cookies, or IP address tracking.", "install_methods": [ { @@ -31,4 +31,4 @@ "password": null }, "notes": [] -} \ No newline at end of file +} diff --git a/json/zigbee2mqtt.json b/json/zigbee2mqtt.json index 18bc8baa5..04bd094bf 100644 --- a/json/zigbee2mqtt.json +++ b/json/zigbee2mqtt.json @@ -43,7 +43,7 @@ }, "notes": [ { - "text": "You can find the post-install guide here: https://github.com/community-scripts/ProxmoxVE/discussions/410", + "text": "You can find the post-install guide here: https://github.com/Dracentis/ProxmoxVe/discussions/410", "type": "info" } ] diff --git a/misc/add-lxc-iptag.sh b/misc/add-lxc-iptag.sh index 7ef23341f..6522601ec 100644 --- a/misc/add-lxc-iptag.sh +++ b/misc/add-lxc-iptag.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Source: https://github.com/gitsang/lxc-iptag function header_info { diff --git a/misc/add-netbird-lxc.sh b/misc/add-netbird-lxc.sh index d2e02bf26..093c602ff 100644 --- a/misc/add-netbird-lxc.sh +++ b/misc/add-netbird-lxc.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Co-Author: MickLesk (Canbiz) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/add-tailscale-lxc.sh b/misc/add-tailscale-lxc.sh index 36d148e40..8c2401f14 100644 --- a/misc/add-tailscale-lxc.sh +++ b/misc/add-tailscale-lxc.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/all-templates.sh b/misc/all-templates.sh index 80f8c807c..5b738edd3 100644 --- a/misc/all-templates.sh +++ b/misc/all-templates.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/alpine-install.func b/misc/alpine-install.func index 313b091f0..f32b19976 100644 --- a/misc/alpine-install.func +++ b/misc/alpine-install.func @@ -2,7 +2,7 @@ # Author: tteck (tteckster) # Co-Author: MickLesk # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # This function sets color variables for formatting output in the terminal color() { @@ -150,7 +150,7 @@ motd_ssh() { PROFILE_FILE="/etc/profile.d/00_lxc-details.sh" echo "echo -e \"\"" > "$PROFILE_FILE" echo -e "echo -e \"${BOLD}${APPLICATION} LXC Container${CL}"\" >> "$PROFILE_FILE" - echo -e "echo -e \"${TAB}${GATEWAY}${YW} Provided by: ${GN}community-scripts ORG ${YW}| GitHub: ${GN}https://github.com/community-scripts/ProxmoxVE${CL}\"" >> "$PROFILE_FILE" + echo -e "echo -e \"${TAB}${GATEWAY}${YW} Provided by: ${GN}community-scripts ORG ${YW}| GitHub: ${GN}https://github.com/Dracentis/ProxmoxVe${CL}\"" >> "$PROFILE_FILE" echo "echo \"\"" >> "$PROFILE_FILE" echo -e "echo -e \"${TAB}${OS}${YW} OS: ${GN}${OS_NAME} - Version: ${OS_VERSION}${CL}\"" >> "$PROFILE_FILE" echo -e "echo -e \"${TAB}${HOSTNAME}${YW} Hostname: ${GN}\$(hostname)${CL}\"" >> "$PROFILE_FILE" @@ -174,4 +174,4 @@ customize() { bash -c "passwd -d root" >/dev/null 2>&1 msg_ok "Customized Container" fi -} \ No newline at end of file +} diff --git a/misc/build.func b/misc/build.func index 75ff478c6..44e4cbaeb 100644 --- a/misc/build.func +++ b/misc/build.func @@ -838,7 +838,7 @@ diagnostics_check(){ DIAGNOSTICS=yes #This file is used to store the diagnostics settings for the Community-Scripts API. -#https://github.com/community-scripts/ProxmoxVE/discussions/1836 +#https://github.com/Dracentis/ProxmoxVe/discussions/1836 #Your diagnostics will be sent to the Community-Scripts API for troubleshooting/statistical purposes. #You can review the data at https://community-scripts.github.io/ProxmoxVE/data #If you do not wish to send diagnostics, please set the variable 'DIAGNOSTICS' to "no" in /usr/local/community-scripts/diagnostics, or use the menue. @@ -868,7 +868,7 @@ EOF DIAGNOSTICS=no #This file is used to store the diagnostics settings for the Community-Scripts API. -#https://github.com/community-scripts/ProxmoxVE/discussions/1836 +#https://github.com/Dracentis/ProxmoxVe/discussions/1836 #Your diagnostics will be sent to the Community-Scripts API for troubleshooting/statistical purposes. #You can review the data at https://community-scripts.github.io/ProxmoxVE/data #If you do not wish to send diagnostics, please set the variable 'DIAGNOSTICS' to "no" in /usr/local/community-scripts/diagnostics, or use the menue. @@ -1061,9 +1061,9 @@ build_container() { TEMP_DIR=$(mktemp -d) pushd $TEMP_DIR >/dev/null if [ "$var_os" == "alpine" ]; then - export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/alpine-install.func)" + export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/alpine-install.func)" else - export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/install.func)" + export FUNCTIONS_FILE_PATH="$(curl -s https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/install.func)" fi export CACHER="$APT_CACHER" export CACHER_IP="$APT_CACHER_IP" @@ -1094,7 +1094,7 @@ build_container() { $PW " # This executes create_lxc.sh and creates the container and .conf file - bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/create_lxc.sh)" || exit + bash -c "$(wget -qLO - https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/ct/create_lxc.sh)" || exit LXC_CONFIG=/etc/pve/lxc/${CTID}.conf if [ "$CT_TYPE" == "0" ]; then @@ -1156,7 +1156,7 @@ http://dl-cdn.alpinelinux.org/alpine/latest-stable/community EOF' pct exec "$CTID" -- ash -c "apk add bash >/dev/null" fi - lxc-attach -n "$CTID" -- bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/install/$var_install.sh)" || exit + lxc-attach -n "$CTID" -- bash -c "$(wget -qLO - https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/install/$var_install.sh)" || exit } @@ -1169,7 +1169,7 @@ description() { cat < - Logo + Logo

${APP} LXC

@@ -1182,15 +1182,15 @@ description() { - GitHub + GitHub - Discussions + Discussions - Issues + Issues EOF diff --git a/misc/clean-lxcs.sh b/misc/clean-lxcs.sh index cabd3f033..b0cbbfad1 100644 --- a/misc/clean-lxcs.sh +++ b/misc/clean-lxcs.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info() { clear @@ -40,7 +40,7 @@ function clean_container() { header_info name=$(pct exec "$container" hostname) echo -e "${BL}[Info]${GN} Cleaning ${name} ${CL} \n" - pct exec $container -- bash -c "apt-get -y --purge autoremove && apt-get -y autoclean && bash <(curl -fsSL https://github.com/community-scripts/ProxmoxVE/raw/main/misc/clean.sh) && rm -rf /var/lib/apt/lists/* && apt-get update" + pct exec $container -- bash -c "apt-get -y --purge autoremove && apt-get -y autoclean && bash <(curl -fsSL https://github.com/Dracentis/ProxmoxVe/raw/main/misc/clean.sh) && rm -rf /var/lib/apt/lists/* && apt-get update" } for container in $(pct list | awk '{if(NR>1) print $1}'); do if [[ " ${excluded_containers[@]} " =~ " $container " ]]; then diff --git a/misc/clean-orphaned-lvm.sh b/misc/clean-orphaned-lvm.sh index d8ad78207..d675587d1 100644 --- a/misc/clean-orphaned-lvm.sh +++ b/misc/clean-orphaned-lvm.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/clean.sh b/misc/clean.sh index 1c92d79ec..f9718c46e 100644 --- a/misc/clean.sh +++ b/misc/clean.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info() { clear diff --git a/misc/code-server.sh b/misc/code-server.sh index 5114e3200..bf4ae0f25 100644 --- a/misc/code-server.sh +++ b/misc/code-server.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { cat <<"EOF" diff --git a/misc/container-restore-from-backup.sh b/misc/container-restore-from-backup.sh index dd5da9453..8f0d61a78 100644 --- a/misc/container-restore-from-backup.sh +++ b/misc/container-restore-from-backup.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/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/misc/copy-data/README.md b/misc/copy-data/README.md index 3257c80f2..974170684 100644 --- a/misc/copy-data/README.md +++ b/misc/copy-data/README.md @@ -2,45 +2,45 @@
To copy data from Home Assistant Container to Home Assistant Container
``` -bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/copy-data/home-assistant-container-copy-data-home-assistant-container.sh)" +bash -c "$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/copy-data/home-assistant-container-copy-data-home-assistant-container.sh)" ```
To copy data from Home Assistant Container to Home Assistant Core
``` -bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/copy-data/home-assistant-container-copy-data-home-assistant-core.sh)" +bash -c "$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/copy-data/home-assistant-container-copy-data-home-assistant-core.sh)" ```
To copy data from Home Assistant Container to Podman Home Assistant
``` -bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/copy-data/home-assistant-container-copy-data-podman-home-assistant.sh)" +bash -c "$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/copy-data/home-assistant-container-copy-data-podman-home-assistant.sh)" ```
To copy data from Podman Home Assistant to Home Assistant Container
``` -bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/copy-data/podman-home-assistant-copy-data-home-assistant-container.sh)" +bash -c "$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/copy-data/podman-home-assistant-copy-data-home-assistant-container.sh)" ```
To copy data from Home Assistant Core to Home Assistant Container
``` -bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/copy-data/home-assistant-core-copy-data-home-assistant-container.sh)" +bash -c "$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/copy-data/home-assistant-core-copy-data-home-assistant-container.sh)" ```
To copy data from Home Assistant Core to Home Assistant Core
``` -bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/copy-data/home-assistant-core-copy-data-home-assistant-core.sh)" +bash -c "$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/copy-data/home-assistant-core-copy-data-home-assistant-core.sh)" ```
To copy data from Plex to Plex
``` -bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/copy-data/plex-copy-data-plex.sh)" +bash -c "$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/copy-data/plex-copy-data-plex.sh)" ```
To copy data from Zigbee2MQTT to Zigbee2MQTT
``` -bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/copy-data/z2m-copy-data-z2m.sh)" +bash -c "$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/copy-data/z2m-copy-data-z2m.sh)" ```
To copy data from Zwavejs2MQTT to Zwave JS UI
``` -bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/copy-data/zwavejs2mqtt-copy-data-zwavejsui.sh)" +bash -c "$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/copy-data/zwavejs2mqtt-copy-data-zwavejsui.sh)" ``` diff --git a/misc/copy-data/home-assistant-container-copy-data-home-assistant-container.sh b/misc/copy-data/home-assistant-container-copy-data-home-assistant-container.sh index a8c137afb..07cf55003 100644 --- a/misc/copy-data/home-assistant-container-copy-data-home-assistant-container.sh +++ b/misc/copy-data/home-assistant-container-copy-data-home-assistant-container.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Use to copy all data from one Home Assistant LXC to another # run from the Proxmox Shell @@ -125,4 +125,4 @@ info "Successfully Transferred Data." # Use to copy all data from one Home Assistant LXC to another # run from the Proxmox Shell -# bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/copy-data/home-assistant-container-copy-data-home-assistant-container.sh)" +# bash -c "$(wget -qLO - https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/copy-data/home-assistant-container-copy-data-home-assistant-container.sh)" diff --git a/misc/copy-data/home-assistant-container-copy-data-home-assistant-core.sh b/misc/copy-data/home-assistant-container-copy-data-home-assistant-core.sh index 998bcb63a..a867170b2 100644 --- a/misc/copy-data/home-assistant-container-copy-data-home-assistant-core.sh +++ b/misc/copy-data/home-assistant-container-copy-data-home-assistant-core.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE clear if ! command -v pveversion >/dev/null 2>&1; then echo -e "⚠️ Run from the Proxmox Shell"; exit; fi @@ -121,4 +121,4 @@ info "Successfully Transferred Data." # Use to copy all data from a Home Assistant Container LXC to a Home Assistant Core LXC # run from the Proxmox Shell -# bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/copy-data/home-assistant-container-copy-data-home-assistant-core.sh)" +# bash -c "$(wget -qLO - https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/copy-data/home-assistant-container-copy-data-home-assistant-core.sh)" diff --git a/misc/copy-data/home-assistant-container-copy-data-podman-home-assistant.sh b/misc/copy-data/home-assistant-container-copy-data-podman-home-assistant.sh index e730372d2..611771e84 100644 --- a/misc/copy-data/home-assistant-container-copy-data-podman-home-assistant.sh +++ b/misc/copy-data/home-assistant-container-copy-data-podman-home-assistant.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Use to copy all data from a Home Assistant LXC to a Podman Home Assistant LXC. # run from the Proxmox Shell @@ -126,4 +126,4 @@ info "Successfully Transferred Data." # Use to copy all data from a Home Assistant LXC to a Podman Home Assistant LXC # run from the Proxmox Shell -# bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/copy-data/home-assistant-container-copy-data-podman-home-assistant.sh)" +# bash -c "$(wget -qLO - https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/copy-data/home-assistant-container-copy-data-podman-home-assistant.sh)" diff --git a/misc/copy-data/home-assistant-core-copy-data-home-assistant-container.sh b/misc/copy-data/home-assistant-core-copy-data-home-assistant-container.sh index dc9eecd7a..13b75db91 100644 --- a/misc/copy-data/home-assistant-core-copy-data-home-assistant-container.sh +++ b/misc/copy-data/home-assistant-core-copy-data-home-assistant-container.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE clear if ! command -v pveversion >/dev/null 2>&1; then echo -e "⚠️ Run from the Proxmox Shell"; exit; fi @@ -121,4 +121,4 @@ info "Successfully Transferred Data." # Use to copy all data from a Home Assistant Core LXC to a Home Assistant Container LXC # run from the Proxmox Shell -# bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/copy-data/home-assistant-core-copy-data-home-assistant-container.sh)" +# bash -c "$(wget -qLO - https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/copy-data/home-assistant-core-copy-data-home-assistant-container.sh)" diff --git a/misc/copy-data/home-assistant-core-copy-data-home-assistant-core.sh b/misc/copy-data/home-assistant-core-copy-data-home-assistant-core.sh index a8d364085..c4573be9b 100644 --- a/misc/copy-data/home-assistant-core-copy-data-home-assistant-core.sh +++ b/misc/copy-data/home-assistant-core-copy-data-home-assistant-core.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE clear if ! command -v pveversion >/dev/null 2>&1; then echo -e "⚠️ Run from the Proxmox Shell"; exit; fi @@ -120,4 +120,4 @@ info "Successfully Transferred Data." # Use to copy all data from a Home Assistant Core LXC to a Home Assistant Container LXC # run from the Proxmox Shell -# bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/copy-data/home-assistant-core-copy-data-home-assistant-core.sh)" +# bash -c "$(wget -qLO - https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/copy-data/home-assistant-core-copy-data-home-assistant-core.sh)" diff --git a/misc/copy-data/plex-copy-data-plex.sh b/misc/copy-data/plex-copy-data-plex.sh index 779921f89..acd95fc30 100644 --- a/misc/copy-data/plex-copy-data-plex.sh +++ b/misc/copy-data/plex-copy-data-plex.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Use to copy all data from one Plex Media Server LXC to another # run from the Proxmox Shell @@ -125,4 +125,4 @@ info "Successfully Transferred Data." # Use to copy all data from one Plex Media Server LXC to another # run from the Proxmox Shell -# bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/copy-data/plex-copy-data-plex.sh)" +# bash -c "$(wget -qLO - https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/copy-data/plex-copy-data-plex.sh)" diff --git a/misc/copy-data/podman-home-assistant-copy-data-home-assistant-container.sh b/misc/copy-data/podman-home-assistant-copy-data-home-assistant-container.sh index 0ff1f071f..8b91c9327 100644 --- a/misc/copy-data/podman-home-assistant-copy-data-home-assistant-container.sh +++ b/misc/copy-data/podman-home-assistant-copy-data-home-assistant-container.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Use to copy all data from a Podman Home Assistant LXC to a Docker Home Assistant LXC. # run from the Proxmox Shell @@ -126,4 +126,4 @@ info "Successfully Transferred Data." # Use to copy all data from a Podman Home Assistant LXC to a Docker Home Assistant LXC. # run from the Proxmox Shell -# bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/copy-data/podman-home-assistant-copy-data-home-assistant-container.sh)" +# bash -c "$(wget -qLO - https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/copy-data/podman-home-assistant-copy-data-home-assistant-container.sh)" diff --git a/misc/copy-data/z2m-copy-data-z2m.sh b/misc/copy-data/z2m-copy-data-z2m.sh index b6807351a..46b30ecc5 100644 --- a/misc/copy-data/z2m-copy-data-z2m.sh +++ b/misc/copy-data/z2m-copy-data-z2m.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Use to copy all data from one Zigbee2MQTT LXC to another # run from the Proxmox Shell @@ -125,4 +125,4 @@ info "Successfully Transferred Data." # Use to copy all data from one Zigbee2MQTT LXC to another # run from the Proxmox Shell -# bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/copy-data/z2m-copy-data-z2m.sh)" +# bash -c "$(wget -qLO - https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/copy-data/z2m-copy-data-z2m.sh)" diff --git a/misc/copy-data/zwavejs2mqtt-copy-data-zwavejsui.sh b/misc/copy-data/zwavejs2mqtt-copy-data-zwavejsui.sh index 3f282e250..9bd662668 100644 --- a/misc/copy-data/zwavejs2mqtt-copy-data-zwavejsui.sh +++ b/misc/copy-data/zwavejs2mqtt-copy-data-zwavejsui.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Use to copy all data from a Zwavejs2MQTT LXC to a Z-wave JS UI LXC # run from the Proxmox Shell @@ -127,4 +127,4 @@ info "Successfully Transferred Data." # Use to copy all data from a Zwavejs2MQTT LXC to a Z-wave JS UI LXC # run from the Proxmox Shell -# bash -c "$(wget -qLO - https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/copy-data/zwavejs2mqtt-copy-data-zwavejsui.sh)" +# bash -c "$(wget -qLO - https://raw.githubusercontent.com/Dracentis/ProxmoxVe/main/misc/copy-data/zwavejs2mqtt-copy-data-zwavejsui.sh)" diff --git a/misc/core-restore-from-backup.sh b/misc/core-restore-from-backup.sh index 021e6b05a..4e19f6305 100644 --- a/misc/core-restore-from-backup.sh +++ b/misc/core-restore-from-backup.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/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/misc/cron-update-lxcs.sh b/misc/cron-update-lxcs.sh index b83111fed..6ab0bc450 100644 --- a/misc/cron-update-lxcs.sh +++ b/misc/cron-update-lxcs.sh @@ -3,8 +3,8 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/cron-update-lxcs.sh)" +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE +# bash -c "$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/cron-update-lxcs.sh)" clear cat <<"EOF" @@ -25,13 +25,13 @@ add() { *) echo "Please answer yes or no." ;; esac done - sh -c '(crontab -l -u root 2>/dev/null; echo "0 0 * * 0 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin /bin/bash -c \"\$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/update-lxcs-cron.sh)\" >>/var/log/update-lxcs-cron.log 2>/dev/null") | crontab -u root -' + sh -c '(crontab -l -u root 2>/dev/null; echo "0 0 * * 0 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin /bin/bash -c \"\$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/update-lxcs-cron.sh)\" >>/var/log/update-lxcs-cron.log 2>/dev/null") | crontab -u root -' clear echo -e "\n To view Cron Update LXCs logs: cat /var/log/update-lxcs-cron.log" } remove() { - (crontab -l | grep -v "github.com/community-scripts/ProxmoxVE/raw/main/misc/update-lxcs-cron.sh") | crontab - + (crontab -l | grep -v "github.com/Dracentis/ProxmoxVe/raw/main/misc/update-lxcs-cron.sh") | crontab - rm -rf /var/log/update-lxcs-cron.log echo "Removed Crontab Schedule from Proxmox VE" } diff --git a/misc/crowdsec.sh b/misc/crowdsec.sh index eae6fc967..679f8392e 100644 --- a/misc/crowdsec.sh +++ b/misc/crowdsec.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE YW=$(echo "\033[33m") BL=$(echo "\033[36m") diff --git a/misc/filebrowser.sh b/misc/filebrowser.sh index a9ea1186b..4c8a30bb3 100644 --- a/misc/filebrowser.sh +++ b/misc/filebrowser.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: tteck (tteckster) | Co-Author: MickLesk -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/frigate-support.sh b/misc/frigate-support.sh index 11e14e7a7..ce696b9a2 100644 --- a/misc/frigate-support.sh +++ b/misc/frigate-support.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/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 "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/frigate-support.sh)" -# Reboot the LXC to apply the changes \ No newline at end of file +# bash -c "$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/frigate-support.sh)" +# Reboot the LXC to apply the changes diff --git a/misc/fstrim.sh b/misc/fstrim.sh index 27a9b9ed2..bc6cceb0f 100644 --- a/misc/fstrim.sh +++ b/misc/fstrim.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info() { clear diff --git a/misc/glances.sh b/misc/glances.sh index cd49dcb33..a6d8c05ce 100644 --- a/misc/glances.sh +++ b/misc/glances.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/host-backup.sh b/misc/host-backup.sh index 5de60fc7e..f9e512c0b 100644 --- a/misc/host-backup.sh +++ b/misc/host-backup.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/hw-acceleration.sh b/misc/hw-acceleration.sh index b632afb34..a2ccc7f40 100644 --- a/misc/hw-acceleration.sh +++ b/misc/hw-acceleration.sh @@ -3,9 +3,9 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Execute within the Proxmox shell -# bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/misc/hw-acceleration.sh)" +# bash -c "$(wget -qLO - https://github.com/Dracentis/ProxmoxVe/raw/main/misc/hw-acceleration.sh)" set -e function header_info { diff --git a/misc/install.func b/misc/install.func index bf18ed07e..d153575a5 100644 --- a/misc/install.func +++ b/misc/install.func @@ -214,7 +214,7 @@ motd_ssh() { PROFILE_FILE="/etc/profile.d/00_lxc-details.sh" echo "echo -e \"\"" > "$PROFILE_FILE" echo -e "echo -e \"${BOLD}${APPLICATION} LXC Container${CL}"\" >> "$PROFILE_FILE" - echo -e "echo -e \"${TAB}${GATEWAY}${YW} Provided by: ${GN}community-scripts ORG ${YW}| GitHub: ${GN}https://github.com/community-scripts/ProxmoxVE${CL}\"" >> "$PROFILE_FILE" + echo -e "echo -e \"${TAB}${GATEWAY}${YW} Provided by: ${GN}community-scripts ORG ${YW}| GitHub: ${GN}https://github.com/Dracentis/ProxmoxVe${CL}\"" >> "$PROFILE_FILE" echo "echo \"\"" >> "$PROFILE_FILE" echo -e "echo -e \"${TAB}${OS}${YW} OS: ${GN}${OS_NAME} - Version: ${OS_VERSION}${CL}\"" >> "$PROFILE_FILE" echo -e "echo -e \"${TAB}${HOSTNAME}${YW} Hostname: ${GN}\$(hostname)${CL}\"" >> "$PROFILE_FILE" diff --git a/misc/kernel-clean.sh b/misc/kernel-clean.sh index 959318bdb..0e47b1ee1 100644 --- a/misc/kernel-clean.sh +++ b/misc/kernel-clean.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/kernel-pin.sh b/misc/kernel-pin.sh index 5450b71ef..fa7738712 100644 --- a/misc/kernel-pin.sh +++ b/misc/kernel-pin.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/lxc-delete.sh b/misc/lxc-delete.sh index 2e76d5963..ff50fc3c4 100644 --- a/misc/lxc-delete.sh +++ b/misc/lxc-delete.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/microcode.sh b/misc/microcode.sh index b5ce7aa71..33dec7985 100644 --- a/misc/microcode.sh +++ b/misc/microcode.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/monitor-all.sh b/misc/monitor-all.sh index 3d6103f5e..8ebbb4b4b 100644 --- a/misc/monitor-all.sh +++ b/misc/monitor-all.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE clear cat <<"EOF" diff --git a/misc/netdata.sh b/misc/netdata.sh index d04b11f9a..103cacec3 100644 --- a/misc/netdata.sh +++ b/misc/netdata.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/olivetin.sh b/misc/olivetin.sh index e35e78df1..191c02d08 100644 --- a/misc/olivetin.sh +++ b/misc/olivetin.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/pbs3-upgrade.sh b/misc/pbs3-upgrade.sh index 465ba8fb1..10c1e26c3 100644 --- a/misc/pbs3-upgrade.sh +++ b/misc/pbs3-upgrade.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE header_info() { clear diff --git a/misc/post-pbs-install.sh b/misc/post-pbs-install.sh index e95c62b0b..97a937523 100644 --- a/misc/post-pbs-install.sh +++ b/misc/post-pbs-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE header_info() { clear diff --git a/misc/post-pmg-install.sh b/misc/post-pmg-install.sh index c5f4ed302..a3b62a133 100644 --- a/misc/post-pmg-install.sh +++ b/misc/post-pmg-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: thost96 (thost96) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE header_info() { clear diff --git a/misc/post-pve-install.sh b/misc/post-pve-install.sh index 4290c50f6..071ac3cc8 100644 --- a/misc/post-pve-install.sh +++ b/misc/post-pve-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE header_info() { clear diff --git a/misc/pve8-upgrade.sh b/misc/pve8-upgrade.sh index 4dd8e1587..852578622 100644 --- a/misc/pve8-upgrade.sh +++ b/misc/pve8-upgrade.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE header_info() { clear diff --git a/misc/pyenv.sh b/misc/pyenv.sh index c1d8044ad..a39e4bd8c 100644 --- a/misc/pyenv.sh +++ b/misc/pyenv.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE set -e YW=$(echo "\033[33m") @@ -113,7 +113,7 @@ cat </srv/esphome/start.sh # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE source /srv/esphome/bin/activate esphome dashboard /srv/esphome/ diff --git a/misc/scaling-governor.sh b/misc/scaling-governor.sh index cb0975349..8f9f64f26 100644 --- a/misc/scaling-governor.sh +++ b/misc/scaling-governor.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE set -e header_info() { clear diff --git a/misc/update-lxcs-cron.sh b/misc/update-lxcs-cron.sh index 9c0def0c4..0fe9e39cc 100644 --- a/misc/update-lxcs-cron.sh +++ b/misc/update-lxcs-cron.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE echo -e "\n $(date)" excluded_containers=("$@") diff --git a/misc/update-lxcs.sh b/misc/update-lxcs.sh index 09b697050..f64903ab8 100644 --- a/misc/update-lxcs.sh +++ b/misc/update-lxcs.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/update-repo.sh b/misc/update-repo.sh index d218d8291..ac3a574be 100644 --- a/misc/update-repo.sh +++ b/misc/update-repo.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: MickLesk # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/misc/usb-passthrough.sh b/misc/usb-passthrough.sh index 58dab9a23..ceebf8e3c 100644 --- a/misc/usb-passthrough.sh +++ b/misc/usb-passthrough.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/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/misc/webmin.sh b/misc/webmin.sh index 92825f463..605ae05c4 100644 --- a/misc/webmin.sh +++ b/misc/webmin.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/turnkey/turnkey.sh b/turnkey/turnkey.sh index 5a39bc83a..afaf577ab 100644 --- a/turnkey/turnkey.sh +++ b/turnkey/turnkey.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear diff --git a/vm/archlinux-vm.sh b/vm/archlinux-vm.sh index 6f08a0023..b19333276 100644 --- a/vm/archlinux-vm.sh +++ b/vm/archlinux-vm.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear @@ -452,7 +452,7 @@ DESCRIPTION=$( cat < - Logo + Logo

Arch Linux VM

@@ -465,15 +465,15 @@ DESCRIPTION=$( - GitHub + GitHub - Discussions + Discussions - Issues + Issues EOF diff --git a/vm/debian-vm.sh b/vm/debian-vm.sh index 857c0ad60..fff7056f6 100644 --- a/vm/debian-vm.sh +++ b/vm/debian-vm.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear @@ -451,7 +451,7 @@ DESCRIPTION=$( cat < - Logo + Logo

Debian VM

@@ -464,15 +464,15 @@ DESCRIPTION=$( - GitHub + GitHub - Discussions + Discussions - Issues + Issues EOF @@ -494,4 +494,4 @@ if [ "$START_VM" == "yes" ]; then fi msg_ok "Completed Successfully!\n" -echo "More Info at https://github.com/community-scripts/ProxmoxVE/discussions/836" +echo "More Info at https://github.com/Dracentis/ProxmoxVe/discussions/836" diff --git a/vm/docker-vm.sh b/vm/docker-vm.sh index db855d504..e67375734 100644 --- a/vm/docker-vm.sh +++ b/vm/docker-vm.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: thost96 (thost96) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear @@ -431,7 +431,7 @@ qm set $VMID --agent enabled=1 >/dev/null DESCRIPTION=$(cat < - Logo + Logo

Docker VM

@@ -444,15 +444,15 @@ qm set $VMID --agent enabled=1 >/dev/null - GitHub + GitHub - Discussions + Discussions - Issues + Issues EOF diff --git a/vm/haos-vm.sh b/vm/haos-vm.sh index 87ba35c90..20a4b080d 100644 --- a/vm/haos-vm.sh +++ b/vm/haos-vm.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear @@ -451,7 +451,7 @@ qm set $VMID \ -efidisk0 ${DISK0_REF}${FORMAT} \ -scsi0 ${DISK1_REF},${DISK_CACHE}${THIN}size=32G \ -boot order=scsi0 \ - -description "
+ -description "
# Home Assistant OS diff --git a/vm/mikrotik-routeros.sh b/vm/mikrotik-routeros.sh index 816dea9f2..780359a48 100644 --- a/vm/mikrotik-routeros.sh +++ b/vm/mikrotik-routeros.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { cat <<"EOF" @@ -275,7 +275,7 @@ qm importdisk $VMID ${FILE%.*} $STORAGE ${DISK_IMPORT:-} 1>&/dev/null qm set $VMID \ -scsi0 "$DISK_REF" \ -boot order=scsi0 \ - -description "
+ -description "
# Mikrotik RouterOS CHR diff --git a/vm/nextcloud-vm.sh b/vm/nextcloud-vm.sh index d93b7b95f..40f5cd97e 100644 --- a/vm/nextcloud-vm.sh +++ b/vm/nextcloud-vm.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear @@ -410,7 +410,7 @@ qm set $VMID \ -scsi0 ${DISK1_REF},${DISK_CACHE}${THIN} \ -scsi1 ${DISK2_REF},${DISK_CACHE}${THIN} \ -boot order='scsi1;scsi0' \ - -description "
+ -description "
# $NAME diff --git a/vm/openwrt.sh b/vm/openwrt.sh index f7488f958..1e9a6bc22 100644 --- a/vm/openwrt.sh +++ b/vm/openwrt.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # Jon Spriggs (jontheniceguy) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE # Based on work from https://i12bretro.github.io/tutorials/0405.html function header_info { @@ -476,7 +476,7 @@ qm set $VMID \ -scsi0 ${DISK1_REF},size=512M \ -boot order=scsi0 \ -tags community-script \ - -description "
+ -description "
# OpenWRT diff --git a/vm/owncloud-vm.sh b/vm/owncloud-vm.sh index e004866c1..685b8e0d6 100644 --- a/vm/owncloud-vm.sh +++ b/vm/owncloud-vm.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear @@ -410,7 +410,7 @@ qm set $VMID \ -scsi0 ${DISK1_REF},${DISK_CACHE}${THIN} \ -scsi1 ${DISK2_REF},${DISK_CACHE}${THIN} \ -boot order='scsi1;scsi0' \ - -description "
+ -description "
# $NAME diff --git a/vm/pimox-haos-vm.sh b/vm/pimox-haos-vm.sh index 0db35f733..f9d94049b 100644 --- a/vm/pimox-haos-vm.sh +++ b/vm/pimox-haos-vm.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { cat <<"EOF" @@ -310,7 +310,7 @@ qm set $VMID \ -scsi0 ${DISK1_REF},size=32G >/dev/null qm set $VMID \ -boot order=scsi0 \ - -description "
+ -description "
# Home Assistant OS diff --git a/vm/ubuntu2204-vm.sh b/vm/ubuntu2204-vm.sh index 501321973..fd7e20fc5 100644 --- a/vm/ubuntu2204-vm.sh +++ b/vm/ubuntu2204-vm.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear @@ -452,7 +452,7 @@ DESCRIPTION=$( cat < - Logo + Logo

ubuntu VM

@@ -465,15 +465,15 @@ DESCRIPTION=$( - GitHub + GitHub - Discussions + Discussions - Issues + Issues
EOF @@ -496,4 +496,4 @@ fi msg_ok "Completed Successfully!\n" echo -e "Setup Cloud-Init before starting \n -More info at https://github.com/community-scripts/ProxmoxVE/discussions/272 \n" +More info at https://github.com/Dracentis/ProxmoxVe/discussions/272 \n" diff --git a/vm/ubuntu2404-vm.sh b/vm/ubuntu2404-vm.sh index b6b18809b..7399bd0a9 100644 --- a/vm/ubuntu2404-vm.sh +++ b/vm/ubuntu2404-vm.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2025 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear @@ -452,7 +452,7 @@ DESCRIPTION=$( cat < - Logo + Logo

ubuntu VM

@@ -465,15 +465,15 @@ DESCRIPTION=$( - GitHub + GitHub - Discussions + Discussions - Issues + Issues
EOF @@ -496,4 +496,4 @@ fi msg_ok "Completed Successfully!\n" echo -e "Setup Cloud-Init before starting \n -More info at https://github.com/community-scripts/ProxmoxVE/discussions/272 \n" +More info at https://github.com/Dracentis/ProxmoxVe/discussions/272 \n" diff --git a/vm/ubuntu2410-vm.sh b/vm/ubuntu2410-vm.sh index a512d81d6..42a41eef5 100644 --- a/vm/ubuntu2410-vm.sh +++ b/vm/ubuntu2410-vm.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2025 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/Dracentis/ProxmoxVe/raw/main/LICENSE function header_info { clear @@ -452,7 +452,7 @@ DESCRIPTION=$( cat < - Logo + Logo

Ubuntu 24.10 VM

@@ -465,15 +465,15 @@ DESCRIPTION=$( - GitHub + GitHub - Discussions + Discussions - Issues + Issues
EOF @@ -496,4 +496,4 @@ fi msg_ok "Completed Successfully!\n" echo -e "Setup Cloud-Init before starting \n -More info at https://github.com/community-scripts/ProxmoxVE/discussions/272 \n" +More info at https://github.com/Dracentis/ProxmoxVe/discussions/272 \n"