diff --git a/.github/CONTRIBUTOR_AND_GUIDES/CONTRIBUTING.md b/.github/CONTRIBUTOR_AND_GUIDES/CONTRIBUTING.md index d71049f8..1c5f20b5 100644 --- a/.github/CONTRIBUTOR_AND_GUIDES/CONTRIBUTING.md +++ b/.github/CONTRIBUTOR_AND_GUIDES/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-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh) and [AppName-install.sh](https://github.com/community-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh) as templates when creating new scripts. +- Use [AppName.sh](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh) and [AppName-install.sh](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/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-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md). +- You can find all coding standards, as well as the structure for this file [here](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/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-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.md). +- You can find all coding standards, as well as the structure for this file [here](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/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-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh) +Start with the [template script](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/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-unscripted/ProxmoxVED/main` to `https://raw.githubusercontent.com/[USER]/[REPOSITORY]/refs/heads/[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-unscripted/ProxmoxVED/main`. +To be able to develop from your own branch you need to change `https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main` to `https://raw.githubusercontent.com/[USER]/[REPOSITORY]/refs/heads/[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/ProxmoxVED/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-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh) -- [Install Template: AppName-install.sh](https://github.com/community-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh) -- [JSON Template: AppName.json](https://github.com/community-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/json/AppName.json) +- [CT Template: AppName.sh](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh) +- [Install Template: AppName-install.sh](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh) +- [JSON Template: AppName.json](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/json/AppName.json) diff --git a/.github/CONTRIBUTOR_AND_GUIDES/USER_SUBMITTED_GUIDES.md b/.github/CONTRIBUTOR_AND_GUIDES/USER_SUBMITTED_GUIDES.md index 8c3dc415..6d9941c5 100644 --- a/.github/CONTRIBUTOR_AND_GUIDES/USER_SUBMITTED_GUIDES.md +++ b/.github/CONTRIBUTOR_AND_GUIDES/USER_SUBMITTED_GUIDES.md @@ -1,6 +1,6 @@
- +

User Submitted Guides

diff --git a/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md b/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md index deeae1f8..8507c7c2 100644 --- a/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md +++ b/.github/CONTRIBUTOR_AND_GUIDES/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-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) ``` > [!CAUTION] @@ -67,7 +67,7 @@ Example: ```bash # Copyright (c) 2021-2026 community-scripts ORG # Author: [YourUserName] -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: [SOURCE_URL] ``` diff --git a/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh b/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh index 1e89bbb0..cf9333c4 100644 --- a/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh +++ b/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: [YourUserName] -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: [SOURCE_URL] # App Default Values diff --git a/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.md b/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.md index 0cf3524d..8e23af37 100644 --- a/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.md +++ b/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.md @@ -59,7 +59,7 @@ Example: ```bash # Copyright (c) 2021-2026 community-scripts ORG # Author: [YourUserName] -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: [SOURCE_URL] ``` diff --git a/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh b/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh index 97956fa7..eb573fa3 100644 --- a/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh +++ b/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: [YourUserName] -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: [SOURCE_URL] # Import Functions und Setup diff --git a/.github/CONTRIBUTOR_AND_GUIDES/json/AppName.json b/.github/CONTRIBUTOR_AND_GUIDES/json/AppName.json index cf51ef97..746ebd91 100644 --- a/.github/CONTRIBUTOR_AND_GUIDES/json/AppName.json +++ b/.github/CONTRIBUTOR_AND_GUIDES/json/AppName.json @@ -31,4 +31,4 @@ "password": null }, "notes": [] -} +} \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/general-issue.yaml b/.github/ISSUE_TEMPLATE/general-issue.yaml index 066761ee..2477a6d1 100644 --- a/.github/ISSUE_TEMPLATE/general-issue.yaml +++ b/.github/ISSUE_TEMPLATE/general-issue.yaml @@ -9,7 +9,7 @@ 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-unscripted/ProxmoxVED/issues?q=is%3Aissue+is%3Aclosed). If found, comment on that issue instead of creating a new one. + - πŸ” **Search first:** Before submitting, check if the issue has already been reported or resolved in [closed issues](https://github.com/community-scripts/ProxmoxVED/issues?q=is%3Aissue+is%3Aclosed). If found, comment on that issue instead of creating a new one. - πŸ› οΈ **Supported environments only:** Ensure you are using a default Linux distribution. Custom setups may not be supported. - πŸ’‘ For general questions, feature requests, or suggestions, use the [Discussions section](https://github.com/community-scripts/ProxmoxVE/discussions) in the Main Repository. diff --git a/.github/workflows/autolabeler.yml b/.github/workflows/autolabeler.yml index bc195910..149382c1 100644 --- a/.github/workflows/autolabeler.yml +++ b/.github/workflows/autolabeler.yml @@ -7,7 +7,7 @@ on: jobs: autolabeler: - if: github.repository == 'community-unscripted/ProxmoxVED' + if: github.repository == 'community-scripts/ProxmoxVED' runs-on: ubuntu-latest permissions: pull-requests: write diff --git a/.github/workflows/bak/get-versions-from-gh.yaml b/.github/workflows/bak/get-versions-from-gh.yaml index fde06871..0a990efd 100644 --- a/.github/workflows/bak/get-versions-from-gh.yaml +++ b/.github/workflows/bak/get-versions-from-gh.yaml @@ -12,14 +12,14 @@ permissions: jobs: crawl-versions: - if: github.repository == 'community-unscripted/ProxmoxVED' + if: github.repository == 'community-scripts/ProxmoxVED' runs-on: ubuntu-latest steps: - name: Checkout Repository uses: actions/checkout@v4 with: - repository: community-unscripted/ProxmoxVED + repository: community-scripts/ProxmoxVED ref: main - name: Generate a token diff --git a/.github/workflows/bak/get-versions-from-newreleases.yaml b/.github/workflows/bak/get-versions-from-newreleases.yaml index d403bd5c..634a0c1b 100644 --- a/.github/workflows/bak/get-versions-from-newreleases.yaml +++ b/.github/workflows/bak/get-versions-from-newreleases.yaml @@ -12,14 +12,14 @@ permissions: jobs: crawl-versions: - if: github.repository == 'community-unscripted/ProxmoxVED' + if: github.repository == 'community-scripts/ProxmoxVED' runs-on: ubuntu-latest steps: - name: Checkout Repository uses: actions/checkout@v2 with: - repository: community-unscripted/ProxmoxVED + repository: community-scripts/ProxmoxVED ref: main - name: Generate a token diff --git a/.github/workflows/bak/script-test.yaml b/.github/workflows/bak/script-test.yaml index e08908f1..e9798ae4 100644 --- a/.github/workflows/bak/script-test.yaml +++ b/.github/workflows/bak/script-test.yaml @@ -11,7 +11,7 @@ on: jobs: run-install-script: - if: github.repository == 'community-unscripted/ProxmoxVED' + if: github.repository == 'community-scripts/ProxmoxVED' runs-on: pvenode steps: - name: Checkout PR branch diff --git a/.github/workflows/bak/update_issue.yml b/.github/workflows/bak/update_issue.yml index 65b62104..60fdf678 100644 --- a/.github/workflows/bak/update_issue.yml +++ b/.github/workflows/bak/update_issue.yml @@ -12,7 +12,7 @@ permissions: jobs: update_issues: - if: github.event.pull_request.merged == true && github.repository == 'community-unscripted/ProxmoxVED' + if: github.event.pull_request.merged == true && github.repository == 'community-scripts/ProxmoxVED' runs-on: ubuntu-latest steps: - name: Checkout repository diff --git a/.github/workflows/close_template_issue.yml b/.github/workflows/close_template_issue.yml index cc47450e..d5a5cbc6 100644 --- a/.github/workflows/close_template_issue.yml +++ b/.github/workflows/close_template_issue.yml @@ -5,7 +5,7 @@ on: jobs: close_tteck_issues: - if: github.repository == 'community-unscripted/ProxmoxVED' + if: github.repository == 'community-scripts/ProxmoxVED' runs-on: ubuntu-latest steps: - name: Auto-close if wrong Template issue detected diff --git a/.github/workflows/create-ready-for-testing-message.yml b/.github/workflows/create-ready-for-testing-message.yml index 0f46f1d8..b44d9c1f 100644 --- a/.github/workflows/create-ready-for-testing-message.yml +++ b/.github/workflows/create-ready-for-testing-message.yml @@ -11,7 +11,7 @@ permissions: jobs: post_to_discord: runs-on: ubuntu-latest - if: contains(github.event.issue.labels.*.name, 'Ready For Testing') && github.repository == 'community-unscripted/ProxmoxVED' + if: contains(github.event.issue.labels.*.name, 'Ready For Testing') && github.repository == 'community-scripts/ProxmoxVED' steps: - name: Extract Issue Title and Script Type id: extract_info @@ -43,12 +43,12 @@ jobs: echo "SCRIPT_TYPE=$SCRIPT_TYPE" >> $GITHUB_ENV echo "Detected script type: $SCRIPT_TYPE for title: $TITLE" - - name: Check if Files Exist in community-unscripted/ProxmoxVED + - name: Check if Files Exist in community-scripts/ProxmoxVED id: check_files env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - REPO="community-unscripted/ProxmoxVED" + REPO="community-scripts/ProxmoxVED" API_URL="https://api.github.com/repos/$REPO/contents" TITLE="${{ env.TITLE }}" SCRIPT_TYPE="${{ env.SCRIPT_TYPE }}" @@ -105,16 +105,16 @@ jobs: # Generate correct command based on script type case "$SCRIPT_TYPE" in ct) - VAR+="\`\`\`bash -c \"\$(curl -fsSL https://github.com/community-unscripted/ProxmoxVED/raw/main/ct/${TITLE}.sh)\"\`\`\`\n" + VAR+="\`\`\`bash -c \"\$(curl -fsSL https://github.com/community-scripts/ProxmoxVED/raw/main/ct/${TITLE}.sh)\"\`\`\`\n" ;; vm) - VAR+="\`\`\`bash -c \"\$(curl -fsSL https://github.com/community-unscripted/ProxmoxVED/raw/main/vm/${TITLE}.sh)\"\`\`\`\n" + VAR+="\`\`\`bash -c \"\$(curl -fsSL https://github.com/community-scripts/ProxmoxVED/raw/main/vm/${TITLE}.sh)\"\`\`\`\n" ;; addon) - VAR+="\`\`\`bash -c \"\$(curl -fsSL https://github.com/community-unscripted/ProxmoxVED/raw/main/tools/addon/${TITLE}.sh)\"\`\`\`\n" + VAR+="\`\`\`bash -c \"\$(curl -fsSL https://github.com/community-scripts/ProxmoxVED/raw/main/tools/addon/${TITLE}.sh)\"\`\`\`\n" ;; pve) - VAR+="\`\`\`bash -c \"\$(curl -fsSL https://github.com/community-unscripted/ProxmoxVED/raw/main/tools/pve/${TITLE}.sh)\"\`\`\`\n" + VAR+="\`\`\`bash -c \"\$(curl -fsSL https://github.com/community-scripts/ProxmoxVED/raw/main/tools/pve/${TITLE}.sh)\"\`\`\`\n" ;; esac @@ -127,7 +127,7 @@ jobs: esac if [[ -n "$JSON_FILE" ]]; then - JSON=$(curl -fsSL "https://github.com/community-unscripted/ProxmoxVED/raw/main/${JSON_FILE}" 2>/dev/null || echo "{}") + JSON=$(curl -fsSL "https://github.com/community-scripts/ProxmoxVED/raw/main/${JSON_FILE}" 2>/dev/null || echo "{}") if [[ "$JSON" != "{}" && "$JSON" != "" ]]; then username=$(echo "$JSON" | jq -r '.default_credentials.username // empty') diff --git a/.github/workflows/delete-discord-thread.yml b/.github/workflows/delete-discord-thread.yml index 31419f91..1c36059e 100644 --- a/.github/workflows/delete-discord-thread.yml +++ b/.github/workflows/delete-discord-thread.yml @@ -7,7 +7,7 @@ on: jobs: close_discord_thread: - if: github.repository == 'community-unscripted/ProxmoxVED' + if: github.repository == 'community-scripts/ProxmoxVED' runs-on: ubuntu-latest env: ISSUE_TITLE: ${{ github.event.issue.title }} diff --git a/.github/workflows/delete_new_script.yaml b/.github/workflows/delete_new_script.yaml index a3bca622..f0f11a92 100644 --- a/.github/workflows/delete_new_script.yaml +++ b/.github/workflows/delete_new_script.yaml @@ -7,7 +7,7 @@ on: jobs: delete-files: runs-on: ubuntu-latest - if: contains(github.event.issue.labels.*.name, 'Started Migration To ProxmoxVE') && github.repository == 'community-unscripted/ProxmoxVED' + if: contains(github.event.issue.labels.*.name, 'Started Migration To ProxmoxVE') && github.repository == 'community-scripts/ProxmoxVED' steps: - name: Checkout repository uses: actions/checkout@v4 diff --git a/.github/workflows/move-to-main-repo.yaml b/.github/workflows/move-to-main-repo.yaml index 0e4a7d93..4d80a77f 100644 --- a/.github/workflows/move-to-main-repo.yaml +++ b/.github/workflows/move-to-main-repo.yaml @@ -235,18 +235,18 @@ jobs: fi # Update URLs in ct script - sed -i "s|https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func|https://raw.githubusercontent.com/community-unscripted/ProxmoxVE/main/misc/build.func|" ct/${script_name}.sh - sed -i "s|https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/misc/build.func|https://raw.githubusercontent.com/community-unscripted/ProxmoxVE/main/misc/build.func|" ct/${script_name}.sh - sed -i "s|community-unscripted/ProxmoxVED|community-unscripted/ProxmoxVE|g" ct/${script_name}.sh - sed -i "s|community-unscripted/ProxmoxVED|community-unscripted/ProxmoxVE|g" install/${script_name}-install.sh + sed -i "s|https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func|https://raw.githubusercontent.com/community-unscripted/ProxmoxVE/main/misc/build.func|" ct/${script_name}.sh + sed -i "s|https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/build.func|https://raw.githubusercontent.com/community-unscripted/ProxmoxVE/main/misc/build.func|" ct/${script_name}.sh + sed -i "s|community-scripts/ProxmoxVED|community-unscripted/ProxmoxVE|g" ct/${script_name}.sh + sed -i "s|community-scripts/ProxmoxVED|community-unscripted/ProxmoxVE|g" install/${script_name}-install.sh ;; vm) cp ../vm/${script_name}.sh vm/ cp ../frontend/public/json/${script_name}.json frontend/public/json/ 2>/dev/null || true # Update URLs in vm script - sed -i "s|https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func|https://raw.githubusercontent.com/community-unscripted/ProxmoxVE/main/misc/build.func|" vm/${script_name}.sh - sed -i "s|community-unscripted/ProxmoxVED|community-unscripted/ProxmoxVE|g" vm/${script_name}.sh + sed -i "s|https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func|https://raw.githubusercontent.com/community-unscripted/ProxmoxVE/main/misc/build.func|" vm/${script_name}.sh + sed -i "s|community-scripts/ProxmoxVED|community-unscripted/ProxmoxVE|g" vm/${script_name}.sh ;; addon) mkdir -p tools/addon @@ -254,14 +254,14 @@ jobs: cp ../frontend/public/json/${script_name}.json frontend/public/json/ 2>/dev/null || true # Update URLs in addon script - sed -i "s|community-unscripted/ProxmoxVED|community-unscripted/ProxmoxVE|g" tools/addon/${script_name}.sh + sed -i "s|community-scripts/ProxmoxVED|community-unscripted/ProxmoxVE|g" tools/addon/${script_name}.sh ;; pve) mkdir -p tools/pve cp ../tools/pve/${script_name}.sh tools/pve/ # Update URLs in pve script - sed -i "s|community-unscripted/ProxmoxVED|community-unscripted/ProxmoxVE|g" tools/pve/${script_name}.sh + sed -i "s|community-scripts/ProxmoxVED|community-unscripted/ProxmoxVE|g" tools/pve/${script_name}.sh ;; esac diff --git a/.github/workflows/push-to-gitea.yml b/.github/workflows/push-to-gitea.yml index a81fa2b7..c1fb72d5 100644 --- a/.github/workflows/push-to-gitea.yml +++ b/.github/workflows/push-to-gitea.yml @@ -7,7 +7,7 @@ on: jobs: sync: - if: github.repository == 'community-unscripted/ProxmoxVED' + if: github.repository == 'community-scripts/ProxmoxVED' runs-on: ubuntu-latest steps: @@ -20,7 +20,7 @@ jobs: git config --global user.name "Push From Github" git config --global user.email "actions@github.com" - name: Add Gitea remote - run: git remote add gitea https://$GITEA_USER:$GITEA_TOKEN@git.community-scripts.org/community-unscripted/ProxmoxVED.git + run: git remote add gitea https://$GITEA_USER:$GITEA_TOKEN@git.community-scripts.org/community-scripts/ProxmoxVED.git env: GITEA_USER: ${{ secrets.GITEA_USERNAME }} GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} diff --git a/.github/workflows/scripts/app-test/pr-alpine-install.func b/.github/workflows/scripts/app-test/pr-alpine-install.func index 36b22169..95d85cb7 100644 --- a/.github/workflows/scripts/app-test/pr-alpine-install.func +++ b/.github/workflows/scripts/app-test/pr-alpine-install.func @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Copyright (c) 2021-2026 community-scripts ORG # Author: Michel Roegl-Brunner (michelroegl-brunner) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE color() { return diff --git a/.github/workflows/scripts/app-test/pr-build.func b/.github/workflows/scripts/app-test/pr-build.func index cd1a501d..2f143d3d 100644 --- a/.github/workflows/scripts/app-test/pr-build.func +++ b/.github/workflows/scripts/app-test/pr-build.func @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Copyright (c) 2021-2026 community-scripts ORG # Author: Michel Roegl-Brunner (michelroegl-brunner) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE variables() { NSAPP=$(echo ${APP,,} | tr -d ' ') # This function sets the NSAPP variable by converting the value of the APP variable to lowercase and removing any spaces. @@ -147,9 +147,9 @@ build_container() { TEMP_DIR=$(mktemp -d) pushd $TEMP_DIR >/dev/null if [ "$var_os" == "alpine" ]; then - export FUNCTIONS_FILE_PATH="$(wget -qLO https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/.github/workflows/scripts/app-test/pr-alpine-install.func)" + export FUNCTIONS_FILE_PATH="$(wget -qLO https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/.github/workflows/scripts/app-test/pr-alpine-install.func)" else - export FUNCTIONS_FILE_PATH="$(wget -qLO https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/.github/workflows/scripts/app-test/pr-install.func)" + export FUNCTIONS_FILE_PATH="$(wget -qLO https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/.github/workflows/scripts/app-test/pr-install.func)" fi export CACHER="$APT_CACHER" @@ -184,7 +184,7 @@ build_container() { echo "Container ID: $CTID" # This executes create_lxc.sh and creates the container and .conf file - bash -c "$(curl -fsSL https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/.github/workflows/scripts/app-test/pr-create-lxc.sh)" + bash -c "$(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/.github/workflows/scripts/app-test/pr-create-lxc.sh)" LXC_CONFIG=/etc/pve/lxc/${CTID}.conf if [ "$CT_TYPE" == "0" ]; then diff --git a/.github/workflows/scripts/app-test/pr-create-lxc.sh b/.github/workflows/scripts/app-test/pr-create-lxc.sh index 501baf62..99d6b774 100644 --- a/.github/workflows/scripts/app-test/pr-create-lxc.sh +++ b/.github/workflows/scripts/app-test/pr-create-lxc.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Copyright (c) 2021-2026 community-scripts ORG # Author: Michel Roegl-Brunner (michelroegl-brunner) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE color() { return diff --git a/.github/workflows/scripts/app-test/pr-install.func b/.github/workflows/scripts/app-test/pr-install.func index 53217904..8b45f154 100644 --- a/.github/workflows/scripts/app-test/pr-install.func +++ b/.github/workflows/scripts/app-test/pr-install.func @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Copyright (c) 2021-2026 community-scripts ORG # Author: Michel Roegl-Brunner (michelroegl-brunner) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE color() { return diff --git a/.github/workflows/update-github-versions.yml b/.github/workflows/update-github-versions.yml index f9b91095..9f3680a8 100644 --- a/.github/workflows/update-github-versions.yml +++ b/.github/workflows/update-github-versions.yml @@ -15,7 +15,7 @@ env: jobs: update-github-versions: - if: github.repository == 'community-unscripted/ProxmoxVED' + if: github.repository == 'community-scripts/ProxmoxVED' runs-on: ubuntu-latest steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index d0657386..0de5171d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@
- +

diff --git a/README.md b/README.md index a30ec2a0..967e7139 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ This repository contains a collection of scripts for managing and automating Pro Join the discussion, contribute code, or report issues: - **Discord**: [Join the Proxmox Helper Scripts Discord server](https://discord.gg/UHrpNWGwkH) -- **GitHub Issues**: [Report bugs or request features](https://github.com/community-unscripted/ProxmoxVED/issues) +- **GitHub Issues**: [Report bugs or request features](https://github.com/community-scripts/ProxmoxVED/issues) ## πŸ“œ License diff --git a/ct/affine.sh b/ct/affine.sh index 30e364f4..edc90691 100644 --- a/ct/affine.sh +++ b/ct/affine.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/toeverything/AFFiNE APP="AFFiNE" diff --git a/ct/agregarr.sh b/ct/agregarr.sh index 9ca2387a..6967ddcd 100644 --- a/ct/agregarr.sh +++ b/ct/agregarr.sh @@ -3,7 +3,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV # Copyright (c) 2021-2026 community-scripts ORG # Author: community-scripts -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/agregarr/agregarr APP="Agregarr" @@ -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}:7171${CL}" +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7171${CL}" \ No newline at end of file diff --git a/ct/almalinux.sh b/ct/almalinux.sh index 5ec3bafd..e1ca7597 100644 --- a/ct/almalinux.sh +++ b/ct/almalinux.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://almalinux.org/ APP="AlmaLinux" diff --git a/ct/alpine-borgbackup-server.sh b/ct/alpine-borgbackup-server.sh index 17c232af..7efbdff5 100644 --- a/ct/alpine-borgbackup-server.sh +++ b/ct/alpine-borgbackup-server.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: Sander Koenders (sanderkoenders) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.borgbackup.org/ APP="Alpine-BorgBackup-Server" diff --git a/ct/alpine-ntfy.sh b/ct/alpine-ntfy.sh index bf3b0b99..f1b44a73 100644 --- a/ct/alpine-ntfy.sh +++ b/ct/alpine-ntfy.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: cobalt (cobaltgit) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://ntfy.sh/ APP="Alpine-ntfy" diff --git a/ct/alpine.sh b/ct/alpine.sh index 059d4666..f9a814db 100644 --- a/ct/alpine.sh +++ b/ct/alpine.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://alpinelinux.org/ APP="Alpine" diff --git a/ct/anytype-server.sh b/ct/anytype-server.sh index 87d70944..f6cb08d2 100644 --- a/ct/anytype-server.sh +++ b/ct/anytype-server.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://anytype.io APP="Anytype-Server" diff --git a/ct/arm.sh b/ct/arm.sh index ea70dcbf..74f61f00 100644 --- a/ct/arm.sh +++ b/ct/arm.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/automatic-ripping-machine/automatic-ripping-machine APP="ARM" diff --git a/ct/authentik.sh b/ct/authentik.sh index f2b82681..39523a12 100644 --- a/ct/authentik.sh +++ b/ct/authentik.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: Thieneret -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/goauthentik/authentik APP="authentik" diff --git a/ct/caddymanager.sh b/ct/caddymanager.sh index 5b54eb97..db1a225d 100644 --- a/ct/caddymanager.sh +++ b/ct/caddymanager.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: SlaviΕ‘a AreΕΎina (tremor021) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/caddymanager/caddymanager APP="CaddyManager" diff --git a/ct/centos.sh b/ct/centos.sh index 6a64c5fa..6ce04dbf 100644 --- a/ct/centos.sh +++ b/ct/centos.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.centos.org/centos-stream/ APP="CentOS Stream" diff --git a/ct/debian.sh b/ct/debian.sh index dfbc08c0..730df39f 100644 --- a/ct/debian.sh +++ b/ct/debian.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: APP="Debian" diff --git a/ct/deferred/alpine-homarr.sh b/ct/deferred/alpine-homarr.sh index 592ef65b..b3f8a734 100644 --- a/ct/deferred/alpine-homarr.sh +++ b/ct/deferred/alpine-homarr.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) | Co-Author: MickLesk (Canbiz) | Co-Author: CrazyWolf13 diff --git a/ct/deferred/docspell.json b/ct/deferred/docspell.json index 356ec874..dbf8e95a 100644 --- a/ct/deferred/docspell.json +++ b/ct/deferred/docspell.json @@ -32,4 +32,4 @@ "password": null }, "notes": [] -} +} \ No newline at end of file diff --git a/ct/deferred/docspell.sh b/ct/deferred/docspell.sh index b6ec594d..6d6fb9df 100644 --- a/ct/deferred/docspell.sh +++ b/ct/deferred/docspell.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (Canbiz) diff --git a/ct/deferred/jumpserver.sh b/ct/deferred/jumpserver.sh index 4bc36ba2..53aaa5e0 100644 --- a/ct/deferred/jumpserver.sh +++ b/ct/deferred/jumpserver.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: NΓ­colas Pastorello (opastorello) diff --git a/ct/deferred/kanba.sh b/ct/deferred/kanba.sh index d4bd7271..4c78181c 100644 --- a/ct/deferred/kanba.sh +++ b/ct/deferred/kanba.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/Kanba-co/kanba APP="Kanba" diff --git a/ct/deferred/maxun.json b/ct/deferred/maxun.json index 98bf023a..7ed83e0d 100644 --- a/ct/deferred/maxun.json +++ b/ct/deferred/maxun.json @@ -32,4 +32,4 @@ "password": null }, "notes": [] -} +} \ No newline at end of file diff --git a/ct/deferred/maxun.sh b/ct/deferred/maxun.sh index bb6c724f..226c8dec 100644 --- a/ct/deferred/maxun.sh +++ b/ct/deferred/maxun.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/getmaxun/maxun APP="Maxun" diff --git a/ct/deferred/maybe_death/petio.sh b/ct/deferred/maybe_death/petio.sh index a58c54d7..9771b125 100644 --- a/ct/deferred/maybe_death/petio.sh +++ b/ct/deferred/maybe_death/petio.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE diff --git a/ct/deferred/netbootxyz.sh b/ct/deferred/netbootxyz.sh index 98474a47..1583efc6 100644 --- a/ct/deferred/netbootxyz.sh +++ b/ct/deferred/netbootxyz.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2023 tteck # Author: tteck (tteckster) diff --git a/ct/deferred/nginxproxymanager.sh b/ct/deferred/nginxproxymanager.sh index be3138fb..f808fa7f 100644 --- a/ct/deferred/nginxproxymanager.sh +++ b/ct/deferred/nginxproxymanager.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) diff --git a/ct/deferred/ocis.sh b/ct/deferred/ocis.sh index 189390b5..ed67ef4a 100644 --- a/ct/deferred/ocis.sh +++ b/ct/deferred/ocis.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.debian.org/ APP="ocis" diff --git a/ct/deferred/piler.sh b/ct/deferred/piler.sh index 72e859b1..a6dfcf65 100644 --- a/ct/deferred/piler.sh +++ b/ct/deferred/piler.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.mailpiler.org/ APP="Piler" diff --git a/ct/deferred/polaris.sh b/ct/deferred/polaris.sh index 3889b2d9..e0394e05 100644 --- a/ct/deferred/polaris.sh +++ b/ct/deferred/polaris.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/agersant/polaris APP="Polaris" diff --git a/ct/deferred/roundcubemail.sh b/ct/deferred/roundcubemail.sh index bca3e84c..94f40935 100644 --- a/ct/deferred/roundcubemail.sh +++ b/ct/deferred/roundcubemail.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) diff --git a/ct/deferred/rybbit.sh b/ct/deferred/rybbit.sh index 0dee580e..aceaf970 100644 --- a/ct/deferred/rybbit.sh +++ b/ct/deferred/rybbit.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/rybbit-io/rybbit APP="Rybbit" diff --git a/ct/deferred/squirrelserversmanager.sh b/ct/deferred/squirrelserversmanager.sh index 3323188f..46acb8eb 100644 --- a/ct/deferred/squirrelserversmanager.sh +++ b/ct/deferred/squirrelserversmanager.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (Canbiz) diff --git a/ct/deferred/transmission-openvpn.sh b/ct/deferred/transmission-openvpn.sh index a9a67b27..e171af60 100644 --- a/ct/deferred/transmission-openvpn.sh +++ b/ct/deferred/transmission-openvpn.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: SunFlowerOwl diff --git a/ct/devuan.sh b/ct/devuan.sh index e798e6fe..da227d48 100644 --- a/ct/devuan.sh +++ b/ct/devuan.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.devuan.org/ APP="Devuan" diff --git a/ct/discourse.sh b/ct/discourse.sh index 425d639a..e9387dd6 100644 --- a/ct/discourse.sh +++ b/ct/discourse.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.discourse.org/ APP="Discourse" diff --git a/ct/ente.sh b/ct/ente.sh index 4b309003..eb40a993 100644 --- a/ct/ente.sh +++ b/ct/ente.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.debian.org/ APP="Ente" diff --git a/ct/fedora.sh b/ct/fedora.sh index da13b926..5f59e72f 100644 --- a/ct/fedora.sh +++ b/ct/fedora.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://fedoraproject.org/ APP="Fedora" diff --git a/ct/forgejo-runner.sh b/ct/forgejo-runner.sh index 132e7189..c11dd19a 100644 --- a/ct/forgejo-runner.sh +++ b/ct/forgejo-runner.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: Simon Friedrich diff --git a/ct/garmin-grafana.sh b/ct/garmin-grafana.sh index 43eb3580..ed625fb6 100644 --- a/ct/garmin-grafana.sh +++ b/ct/garmin-grafana.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: aliaksei135 -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/arpanghosh8453/garmin-grafana APP="garmin-grafana" diff --git a/ct/gentoo.sh b/ct/gentoo.sh index 7ba377af..cf6e88e9 100644 --- a/ct/gentoo.sh +++ b/ct/gentoo.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.gentoo.org/ APP="Gentoo" diff --git a/ct/github-runner.sh b/ct/github-runner.sh index b4d6fbf6..61556ed2 100644 --- a/ct/github-runner.sh +++ b/ct/github-runner.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/actions/runner APP="GitHub-Runner" diff --git a/ct/hoodik.sh b/ct/hoodik.sh index acb7b3aa..c43e1232 100644 --- a/ct/hoodik.sh +++ b/ct/hoodik.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/hudikhq/hoodik APP="Hoodik" diff --git a/ct/igotify.sh b/ct/igotify.sh index e7ad31e3..23e46855 100644 --- a/ct/igotify.sh +++ b/ct/igotify.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: pfassina -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/androidseb25/iGotify-Notification-Assistent APP="iGotify" diff --git a/ct/isponsorblocktv.sh b/ct/isponsorblocktv.sh index d4c5b985..f328d90e 100644 --- a/ct/isponsorblocktv.sh +++ b/ct/isponsorblocktv.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: Matthew Stern (sternma) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/dmunozv04/iSponsorBlockTV APP="iSponsorBlockTV" diff --git a/ct/lemonade.sh b/ct/lemonade.sh index 3f9e5fa5..c21ba947 100644 --- a/ct/lemonade.sh +++ b/ct/lemonade.sh @@ -2,7 +2,7 @@ source <(curl -sSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: community-scripts -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://lemonade-server.ai APP="Lemonade" diff --git a/ct/localagi.sh b/ct/localagi.sh index de2ac95c..318e7d33 100644 --- a/ct/localagi.sh +++ b/ct/localagi.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -sSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -sSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: BillyOutlast -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/mudler/LocalAGI APP="LocalAGI" diff --git a/ct/mcphub.sh b/ct/mcphub.sh index a08d184c..9ecf1c00 100644 --- a/ct/mcphub.sh +++ b/ct/mcphub.sh @@ -2,7 +2,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: BillyOutlast -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/samanhappy/mcphub | Docs: https://docs.mcphubx.com/ APP="MCPHub" diff --git a/ct/minthcm.sh b/ct/minthcm.sh index d5f3fc13..a57a6bb9 100644 --- a/ct/minthcm.sh +++ b/ct/minthcm.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2025 minthcm # Author: MintHCM diff --git a/ct/nextexplorer.sh b/ct/nextexplorer.sh index 8ad79415..2ac0a973 100644 --- a/ct/nextexplorer.sh +++ b/ct/nextexplorer.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: vhsdream -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/nxzai/nextExplorer APP="nextExplorer" diff --git a/ct/openeuler.sh b/ct/openeuler.sh index 17e13290..5e65be47 100644 --- a/ct/openeuler.sh +++ b/ct/openeuler.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.openeuler.org/ # NOTE: openEuler has a PVE compatibility issue diff --git a/ct/opensuse.sh b/ct/opensuse.sh index 65ab72f1..b882587a 100644 --- a/ct/opensuse.sh +++ b/ct/opensuse.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.opensuse.org/ APP="openSUSE" diff --git a/ct/oxicloud.sh b/ct/oxicloud.sh index 79fbf112..fc16fa08 100644 --- a/ct/oxicloud.sh +++ b/ct/oxicloud.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: vhsdream -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/DioCrafts/OxiCloud APP="OxiCloud" diff --git a/ct/pixelfed.sh b/ct/pixelfed.sh index e5337c3d..dc49a6fb 100644 --- a/ct/pixelfed.sh +++ b/ct/pixelfed.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://pixelfed.org/ APP="Pixelfed" diff --git a/ct/postiz.sh b/ct/postiz.sh index 3687c99e..bddd6c6a 100644 --- a/ct/postiz.sh +++ b/ct/postiz.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/gitroomhq/postiz-app APP="Postiz" diff --git a/ct/rockylinux.sh b/ct/rockylinux.sh index e1930c17..4dc9024d 100644 --- a/ct/rockylinux.sh +++ b/ct/rockylinux.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://rockylinux.org/ APP="Rocky Linux" diff --git a/ct/simplelogin.sh b/ct/simplelogin.sh index 31002626..fbe393e6 100644 --- a/ct/simplelogin.sh +++ b/ct/simplelogin.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/simple-login/app APP="SimpleLogin" diff --git a/ct/skylite-ux.sh b/ct/skylite-ux.sh index b2488f9d..fe6ea7a5 100644 --- a/ct/skylite-ux.sh +++ b/ct/skylite-ux.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: bzumhagen -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/Wetzel402/Skylite-UX APP="Skylite-UX" diff --git a/ct/split-pro.sh b/ct/split-pro.sh index 5748c7a5..1edda398 100644 --- a/ct/split-pro.sh +++ b/ct/split-pro.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: johanngrobe diff --git a/ct/step-ca.sh b/ct/step-ca.sh index a255c9c9..b5ebb2ee 100644 --- a/ct/step-ca.sh +++ b/ct/step-ca.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: Joerg Heinemann (heinemannj) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/smallstep/certificates APP="step-ca" diff --git a/ct/swarmui.sh b/ct/swarmui.sh index d49a6b0d..bddfb14b 100644 --- a/ct/swarmui.sh +++ b/ct/swarmui.sh @@ -3,7 +3,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/Proxm # Copyright (c) 2021-2026 community-scripts ORG # Author: community-scripts -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/mcmonkeyprojects/SwarmUI APP="SwarmUI" diff --git a/ct/tor-snowflake.sh b/ct/tor-snowflake.sh index 9325ae63..7652b6b5 100644 --- a/ct/tor-snowflake.sh +++ b/ct/tor-snowflake.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: KernelSailor diff --git a/ct/twenty.sh b/ct/twenty.sh index 0f3cd078..1352933c 100644 --- a/ct/twenty.sh +++ b/ct/twenty.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/twentyhq/twenty APP="Twenty" diff --git a/ct/ubuntu.sh b/ct/ubuntu.sh index c0fb9a53..1a0cdbce 100644 --- a/ct/ubuntu.sh +++ b/ct/ubuntu.sh @@ -1,10 +1,10 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) -# source <(curl -fsSL https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/misc/github.func) +# source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/github.func) # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://ubuntu.com/ APP="Ubuntu" diff --git a/ct/yamtrack.sh b/ct/yamtrack.sh index 4560cf46..7f98e1a0 100644 --- a/ct/yamtrack.sh +++ b/ct/yamtrack.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/FuzzyGrim/Yamtrack APP="Yamtrack" diff --git a/ct/zitadel.sh b/ct/zitadel.sh index 35395555..dc178c2c 100644 --- a/ct/zitadel.sh +++ b/ct/zitadel.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: dave-yap (dave-yap) | Co-author: remz1337 diff --git a/docs/AI.md b/docs/AI.md index bfcc205c..48e551ba 100644 --- a/docs/AI.md +++ b/docs/AI.md @@ -27,10 +27,10 @@ We do **NOT use Docker** for our installation scripts. All applications are inst ```bash #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: AuthorName (GitHubUsername) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://application-url.com APP="AppName" @@ -100,7 +100,7 @@ echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:PORT${CL}" # Copyright (c) 2021-2026 community-scripts ORG # Author: AuthorName (GitHubUsername) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://application-url.com source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/docs/DEFAULTS_SYSTEM_GUIDE.md b/docs/DEFAULTS_SYSTEM_GUIDE.md index dab8881f..ce5a424d 100644 --- a/docs/DEFAULTS_SYSTEM_GUIDE.md +++ b/docs/DEFAULTS_SYSTEM_GUIDE.md @@ -716,8 +716,8 @@ EOF ### Need More Information? - πŸ“– [Main Documentation](../../docs/) -- πŸ› [Report Issues](https://github.com/community-unscripted/ProxmoxVED/issues) -- πŸ’¬ [Discussions](https://github.com/community-unscripted/ProxmoxVED/discussions) +- πŸ› [Report Issues](https://github.com/community-scripts/ProxmoxVED/issues) +- πŸ’¬ [Discussions](https://github.com/community-scripts/ProxmoxVED/discussions) ### Useful Commands diff --git a/docs/DEV_MODE.md b/docs/DEV_MODE.md index 3f57ac6a..81f52709 100644 --- a/docs/DEV_MODE.md +++ b/docs/DEV_MODE.md @@ -7,16 +7,16 @@ Development modes provide powerful debugging and testing capabilities for contai ```bash # Single mode export dev_mode="motd" -bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/ct/wallabag.sh)" +bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/wallabag.sh)" # Multiple modes (comma-separated) export dev_mode="motd,keep,trace" -bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/ct/wallabag.sh)" +bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/wallabag.sh)" # Combine with verbose output export var_verbose="yes" export dev_mode="pause,logs" -bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/ct/wallabag.sh)" +bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/wallabag.sh)" ``` ## Available Modes @@ -297,7 +297,7 @@ bash -c "$(curl ...)" ### Source URL Override - `COMMUNITY_SCRIPTS_URL` (string): Base URL for sourcing all scripts and functions - - Default: `https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main` + - Default: `https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main` - Override to point to your own fork/branch during development ```bash @@ -457,7 +457,7 @@ grep "ed563b19" /var/log/community-scripts/*.log ```bash # Initial test to see the failure export dev_mode="keep,logs" -bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/ct/wallabag.sh)" +bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/wallabag.sh)" # Container 107 kept, check logs tail /var/log/community-scripts/install-*.log diff --git a/docs/EXIT_CODES.md b/docs/EXIT_CODES.md index 816122b0..7916c4a1 100644 --- a/docs/EXIT_CODES.md +++ b/docs/EXIT_CODES.md @@ -285,7 +285,7 @@ Official discussion: [GitHub #8126](https://github.com/community-scripts/Proxmox Found an undocumented exit code or have a solution to share? Please: -1. Open an issue on [GitHub](https://github.com/community-unscripted/ProxmoxVED/issues) +1. Open an issue on [GitHub](https://github.com/community-scripts/ProxmoxVED/issues) 2. Include: - Exit code number - Error message diff --git a/docs/README.md b/docs/README.md index ac10b16c..2d2f6817 100644 --- a/docs/README.md +++ b/docs/README.md @@ -275,7 +275,7 @@ Documentation for `/misc` - 9 core function libraries with complete references. Found an error? Want to improve docs? 1. See: [contribution/README.md](contribution/README.md) for full contribution guide -2. Open issue: [GitHub Issues](https://github.com/community-unscripted/ProxmoxVED/issues) +2. Open issue: [GitHub Issues](https://github.com/community-scripts/ProxmoxVED/issues) 3. Or submit PR with improvements --- diff --git a/docs/api/README.md b/docs/api/README.md index 60a7df70..83ad70f8 100644 --- a/docs/api/README.md +++ b/docs/api/README.md @@ -137,7 +137,7 @@ If API calls fail: 2. Verify PocketBase endpoint: `curl -s http://db.community-scripts.org/api/health` 3. Review error codes in [EXIT_CODES.md](../EXIT_CODES.md) 4. Check that `DIAGNOSTICS=yes` in `/usr/local/community-scripts/diagnostics` -5. Report issues on [GitHub](https://git.community-scripts.org/community-unscripted/ProxmoxVED/issues) +5. Report issues on [GitHub](https://git.community-scripts.org/community-scripts/ProxmoxVED/issues) --- diff --git a/docs/contribution/CONTRIBUTING.md b/docs/contribution/CONTRIBUTING.md index d71049f8..1c5f20b5 100644 --- a/docs/contribution/CONTRIBUTING.md +++ b/docs/contribution/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-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh) and [AppName-install.sh](https://github.com/community-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh) as templates when creating new scripts. +- Use [AppName.sh](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh) and [AppName-install.sh](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/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-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md). +- You can find all coding standards, as well as the structure for this file [here](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/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-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.md). +- You can find all coding standards, as well as the structure for this file [here](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/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-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh) +Start with the [template script](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/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-unscripted/ProxmoxVED/main` to `https://raw.githubusercontent.com/[USER]/[REPOSITORY]/refs/heads/[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-unscripted/ProxmoxVED/main`. +To be able to develop from your own branch you need to change `https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main` to `https://raw.githubusercontent.com/[USER]/[REPOSITORY]/refs/heads/[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/ProxmoxVED/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-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh) -- [Install Template: AppName-install.sh](https://github.com/community-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh) -- [JSON Template: AppName.json](https://github.com/community-unscripted/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/json/AppName.json) +- [CT Template: AppName.sh](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh) +- [Install Template: AppName-install.sh](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh) +- [JSON Template: AppName.json](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/json/AppName.json) diff --git a/docs/contribution/FORK_SETUP.md b/docs/contribution/FORK_SETUP.md index ce7356fd..7f0c2bbc 100644 --- a/docs/contribution/FORK_SETUP.md +++ b/docs/contribution/FORK_SETUP.md @@ -98,7 +98,7 @@ The script updates these documentation files: ### Keep Your Fork Updated ```bash # Add upstream if you haven't already -git remote add upstream https://github.com/community-unscripted/ProxmoxVED.git +git remote add upstream https://github.com/community-scripts/ProxmoxVED.git # Get latest from upstream git fetch upstream diff --git a/docs/contribution/GUIDE.md b/docs/contribution/GUIDE.md index 4942d3f4..52c4d950 100644 --- a/docs/contribution/GUIDE.md +++ b/docs/contribution/GUIDE.md @@ -30,7 +30,7 @@ ```bash # 1. Fork the repository on GitHub -# Visit: https://github.com/community-unscripted/ProxmoxVED +# Visit: https://github.com/community-scripts/ProxmoxVED # Click: Fork (top right) # 2. Clone your fork @@ -174,7 +174,7 @@ Examples: ```bash # 1. Fork on GitHub (one-time) -# Visit: https://github.com/community-unscripted/ProxmoxVED +# Visit: https://github.com/community-scripts/ProxmoxVED # Click: Fork # 2. Clone your fork @@ -182,7 +182,7 @@ git clone https://github.com/YOUR_USERNAME/ProxmoxVED.git cd ProxmoxVED # 3. Add upstream remote for updates -git remote add upstream https://github.com/community-unscripted/ProxmoxVED.git +git remote add upstream https://github.com/community-scripts/ProxmoxVED.git # 4. Create feature branch git checkout -b feat/add-myapp @@ -561,7 +561,7 @@ fi # Copyright (c) 2021-2026 community-scripts ORG # Author: YourUsername # Co-Author: AnotherAuthor (for collaborative work) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/app/repo # Description: Brief description of what this script does ``` @@ -762,7 +762,7 @@ git push origin feat/add-myapp --force-with-lease ### Step 3: Create Pull Request on GitHub -**Visit**: https://github.com/community-unscripted/ProxmoxVED/pulls +**Visit**: https://github.com/community-scripts/ProxmoxVED/pulls **Click**: "New Pull Request" @@ -982,8 +982,8 @@ echo "Edit /opt/myapp/config.json to customize settings" - **Documentation**: `/docs` directory and wikis - **Function Reference**: `/misc/*.md` wiki files - **Examples**: Look at similar applications in `/ct` and `/install` -- **GitHub Issues**: https://github.com/community-unscripted/ProxmoxVED/issues -- **Discussions**: https://github.com/community-unscripted/ProxmoxVED/discussions +- **GitHub Issues**: https://github.com/community-scripts/ProxmoxVED/issues +- **Discussions**: https://github.com/community-scripts/ProxmoxVED/discussions ### Ask Questions diff --git a/docs/contribution/MIGRATION_WORKFLOW.md b/docs/contribution/MIGRATION_WORKFLOW.md index a12584c8..d55a5a47 100644 --- a/docs/contribution/MIGRATION_WORKFLOW.md +++ b/docs/contribution/MIGRATION_WORKFLOW.md @@ -419,8 +419,8 @@ The workflow requires a GitHub App with the following setup: **URL Updates Applied**: ```bash # Old URLs (ProxmoxVED) -https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func -https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/misc/build.func +https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func +https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/build.func # New URLs (ProxmoxVE) https://raw.githubusercontent.com/community-unscripted/ProxmoxVE/main/misc/build.func diff --git a/docs/contribution/README.md b/docs/contribution/README.md index 9917d286..01662225 100644 --- a/docs/contribution/README.md +++ b/docs/contribution/README.md @@ -21,7 +21,7 @@ Complete guide to contributing to the ProxmoxVED project - from your first fork ```bash # 1. Fork on GitHub -# Visit: https://github.com/community-unscripted/ProxmoxVED β†’ Fork (top right) +# Visit: https://github.com/community-scripts/ProxmoxVED β†’ Fork (top right) # 2. Clone your fork git clone https://github.com/YOUR_USERNAME/ProxmoxVED.git @@ -81,7 +81,7 @@ git config user.name "Your Name" git config user.email "your.email@example.com" # Add upstream remote for syncing -git remote add upstream https://github.com/community-unscripted/ProxmoxVED.git +git remote add upstream https://github.com/community-scripts/ProxmoxVED.git # Verify remotes git remote -v @@ -329,9 +329,9 @@ bash docs/contribution/setup-fork.sh ## πŸ“ž Contact & Support -- **GitHub**: https://github.com/community-unscripted/ProxmoxVED -- **Issues**: https://github.com/community-unscripted/ProxmoxVED/issues -- **Discussions**: https://github.com/community-unscripted/ProxmoxVED/discussions +- **GitHub**: https://github.com/community-scripts/ProxmoxVED +- **Issues**: https://github.com/community-scripts/ProxmoxVED/issues +- **Discussions**: https://github.com/community-scripts/ProxmoxVED/discussions - **Discord**: [Join Server](https://discord.gg/UHrpNWGwkH) --- diff --git a/docs/contribution/USER_SUBMITTED_GUIDES.md b/docs/contribution/USER_SUBMITTED_GUIDES.md index 8c3dc415..6d9941c5 100644 --- a/docs/contribution/USER_SUBMITTED_GUIDES.md +++ b/docs/contribution/USER_SUBMITTED_GUIDES.md @@ -1,6 +1,6 @@
- +

User Submitted Guides

diff --git a/docs/contribution/setup-fork.sh b/docs/contribution/setup-fork.sh index 6c23d174..f068aeef 100644 --- a/docs/contribution/setup-fork.sh +++ b/docs/contribution/setup-fork.sh @@ -122,7 +122,7 @@ update_links() { while IFS= read -r -d '' file; do if [[ -f "$file" ]]; then # Count occurrences of the old repo URL - local count=$(grep -c "community-unscripted/ProxmoxVED" "$file" 2>/dev/null || echo 0) + local count=$(grep -c "community-scripts/ProxmoxVED" "$file" 2>/dev/null || echo 0) if [[ $count -gt 0 ]]; then # Replace all variations of the URL @@ -138,7 +138,7 @@ update_links() { # Also update markdown docs while IFS= read -r -d '' file; do if [[ -f "$file" ]]; then - local count=$(grep -c "community-unscripted/ProxmoxVED" "$file" 2>/dev/null || echo 0) + local count=$(grep -c "community-scripts/ProxmoxVED" "$file" 2>/dev/null || echo 0) if [[ $count -gt 0 ]]; then sed -i "s|github.com/$old_repo/$old_name|github.com/$new_owner/$new_repo|g" "$file" @@ -172,15 +172,15 @@ create_git_setup_info() { git remote -v # If you don't have 'upstream' configured, add it: -git remote add upstream https://github.com/community-unscripted/ProxmoxVED.git +git remote add upstream https://github.com/community-scripts/ProxmoxVED.git # Verify both remotes exist: git remote -v # Should show: # origin https://github.com/YOUR_USERNAME/ProxmoxVED.git (fetch) # origin https://github.com/YOUR_USERNAME/ProxmoxVED.git (push) -# upstream https://github.com/community-unscripted/ProxmoxVED.git (fetch) -# upstream https://github.com/community-unscripted/ProxmoxVED.git (push) +# upstream https://github.com/community-scripts/ProxmoxVED.git (fetch) +# upstream https://github.com/community-scripts/ProxmoxVED.git (push) ``` ### Configure Git User (if not done globally) @@ -306,7 +306,7 @@ echo "" print_success "All documentation links updated to point to your fork" print_info "Your fork: https://github.com/$USERNAME/$REPO_NAME" -print_info "Upstream: https://github.com/community-unscripted/ProxmoxVED" +print_info "Upstream: https://github.com/community-scripts/ProxmoxVED" echo "" echo -e "${BLUE}Next Steps:${NC}" diff --git a/docs/contribution/templates_ct/AppName.md b/docs/contribution/templates_ct/AppName.md index deeae1f8..8507c7c2 100644 --- a/docs/contribution/templates_ct/AppName.md +++ b/docs/contribution/templates_ct/AppName.md @@ -52,7 +52,7 @@ source <(curl -s https://raw.githubusercontent.com/[USER]/[REPO]/refs/heads/[BRA Final script: ```bash -source <(curl -s https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) ``` > [!CAUTION] @@ -67,7 +67,7 @@ Example: ```bash # Copyright (c) 2021-2026 community-scripts ORG # Author: [YourUserName] -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: [SOURCE_URL] ``` diff --git a/docs/contribution/templates_ct/AppName.sh b/docs/contribution/templates_ct/AppName.sh index 1e89bbb0..cf9333c4 100644 --- a/docs/contribution/templates_ct/AppName.sh +++ b/docs/contribution/templates_ct/AppName.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -s https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/build.func) +source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2026 community-scripts ORG # Author: [YourUserName] -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: [SOURCE_URL] # App Default Values diff --git a/docs/contribution/templates_install/AppName-install.md b/docs/contribution/templates_install/AppName-install.md index 0cf3524d..8e23af37 100644 --- a/docs/contribution/templates_install/AppName-install.md +++ b/docs/contribution/templates_install/AppName-install.md @@ -59,7 +59,7 @@ Example: ```bash # Copyright (c) 2021-2026 community-scripts ORG # Author: [YourUserName] -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: [SOURCE_URL] ``` diff --git a/docs/contribution/templates_install/AppName-install.sh b/docs/contribution/templates_install/AppName-install.sh index 97956fa7..eb573fa3 100644 --- a/docs/contribution/templates_install/AppName-install.sh +++ b/docs/contribution/templates_install/AppName-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: [YourUserName] -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: [SOURCE_URL] # Import Functions und Setup diff --git a/docs/ct/DETAILED_GUIDE.md b/docs/ct/DETAILED_GUIDE.md index a27ea8ad..cd2f8d11 100644 --- a/docs/ct/DETAILED_GUIDE.md +++ b/docs/ct/DETAILED_GUIDE.md @@ -144,11 +144,11 @@ msg_ok "Completed successfully!\n" #!/usr/bin/env bash # Copyright (c) 2021-2026 community-scripts ORG # Author: YourUsername -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/example/project # Import main orchestrator -source <(curl -fsSL https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/misc/build.func) +source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/build.func) ``` > **⚠️ IMPORTANT**: Before opening a PR, change URL to `community-scripts` repo! @@ -363,7 +363,7 @@ function health_check() { ```bash #!/usr/bin/env bash -source <(curl -fsSL https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/misc/build.func) +source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/build.func) APP="Homarr" var_tags="dashboard;homepage" diff --git a/docs/install/DETAILED_GUIDE.md b/docs/install/DETAILED_GUIDE.md index 2489421c..8a691251 100644 --- a/docs/install/DETAILED_GUIDE.md +++ b/docs/install/DETAILED_GUIDE.md @@ -120,7 +120,7 @@ cleanup_lxc #!/usr/bin/env bash # Copyright (c) 2021-2026 community-scripts ORG # Author: YourUsername -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/application/repo # Load all available functions (from core.func + tools.func) diff --git a/frontend/public/json/agregarr.json b/frontend/public/json/agregarr.json index c5760db8..e9c87608 100644 --- a/frontend/public/json/agregarr.json +++ b/frontend/public/json/agregarr.json @@ -39,4 +39,4 @@ "type": "info" } ] -} +} \ No newline at end of file diff --git a/frontend/public/json/alpine-borgbackup-server.json b/frontend/public/json/alpine-borgbackup-server.json index 6da1948c..6c4d7dde 100644 --- a/frontend/public/json/alpine-borgbackup-server.json +++ b/frontend/public/json/alpine-borgbackup-server.json @@ -41,4 +41,4 @@ "type": "info" } ] -} +} \ No newline at end of file diff --git a/frontend/public/json/alpine-ntfy.json b/frontend/public/json/alpine-ntfy.json index addb1f65..adb73bf2 100644 --- a/frontend/public/json/alpine-ntfy.json +++ b/frontend/public/json/alpine-ntfy.json @@ -37,4 +37,4 @@ "type": "info" } ] -} +} \ No newline at end of file diff --git a/frontend/public/json/anytype.json b/frontend/public/json/anytype.json index 733a0108..c3f5b154 100644 --- a/frontend/public/json/anytype.json +++ b/frontend/public/json/anytype.json @@ -45,4 +45,4 @@ "type": "info" } ] -} +} \ No newline at end of file diff --git a/frontend/public/json/authentik.json b/frontend/public/json/authentik.json index f67f3ea9..1e899da7 100644 --- a/frontend/public/json/authentik.json +++ b/frontend/public/json/authentik.json @@ -39,4 +39,4 @@ "type": "info" } ] -} +} \ No newline at end of file diff --git a/frontend/public/json/dependency-check.json b/frontend/public/json/dependency-check.json index 8a7054e5..22f08ae7 100644 --- a/frontend/public/json/dependency-check.json +++ b/frontend/public/json/dependency-check.json @@ -49,4 +49,4 @@ "type": "info" } ] -} +} \ No newline at end of file diff --git a/frontend/public/json/discourse.json b/frontend/public/json/discourse.json index 34fe0b9e..d371c09c 100644 --- a/frontend/public/json/discourse.json +++ b/frontend/public/json/discourse.json @@ -45,4 +45,4 @@ "type": "info" } ] -} +} \ No newline at end of file diff --git a/frontend/public/json/forgejo-runner.json b/frontend/public/json/forgejo-runner.json index 43359206..1ffd96d0 100644 --- a/frontend/public/json/forgejo-runner.json +++ b/frontend/public/json/forgejo-runner.json @@ -32,4 +32,4 @@ "password": null }, "notes": [] -} +} \ No newline at end of file diff --git a/frontend/public/json/garmin-grafana.json b/frontend/public/json/garmin-grafana.json index 0e4cb43b..eea209e2 100644 --- a/frontend/public/json/garmin-grafana.json +++ b/frontend/public/json/garmin-grafana.json @@ -41,4 +41,4 @@ "type": "info" } ] -} +} \ No newline at end of file diff --git a/frontend/public/json/lemonade.json b/frontend/public/json/lemonade.json index 5122d85d..8b739448 100644 --- a/frontend/public/json/lemonade.json +++ b/frontend/public/json/lemonade.json @@ -53,4 +53,4 @@ "type": "info" } ] -} +} \ No newline at end of file diff --git a/frontend/public/json/postiz.json b/frontend/public/json/postiz.json index 259ec853..ae9acb3c 100644 --- a/frontend/public/json/postiz.json +++ b/frontend/public/json/postiz.json @@ -41,4 +41,4 @@ "type": "info" } ] -} +} \ No newline at end of file diff --git a/frontend/public/json/rocm.json b/frontend/public/json/rocm.json index 1a02b494..abc97571 100644 --- a/frontend/public/json/rocm.json +++ b/frontend/public/json/rocm.json @@ -61,4 +61,4 @@ "type": "warning" } ] -} +} \ No newline at end of file diff --git a/frontend/public/json/simplelogin.json b/frontend/public/json/simplelogin.json index 544e9501..6713bbd9 100644 --- a/frontend/public/json/simplelogin.json +++ b/frontend/public/json/simplelogin.json @@ -45,4 +45,4 @@ "type": "info" } ] -} +} \ No newline at end of file diff --git a/frontend/public/json/twenty.json b/frontend/public/json/twenty.json index a51d6a8e..a8195b28 100644 --- a/frontend/public/json/twenty.json +++ b/frontend/public/json/twenty.json @@ -45,4 +45,4 @@ "type": "info" } ] -} +} \ No newline at end of file diff --git a/frontend/public/json/yamtrack.json b/frontend/public/json/yamtrack.json index 844bcf71..8d5f31a6 100644 --- a/frontend/public/json/yamtrack.json +++ b/frontend/public/json/yamtrack.json @@ -41,4 +41,4 @@ "type": "warning" } ] -} +} \ No newline at end of file diff --git a/install/affine-install.sh b/install/affine-install.sh index 229eeeec..5cce1246 100644 --- a/install/affine-install.sh +++ b/install/affine-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/toeverything/AFFiNE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/agregarr-install.sh b/install/agregarr-install.sh index 086e747b..e980716b 100644 --- a/install/agregarr-install.sh +++ b/install/agregarr-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: community-scripts -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/agregarr/agregarr source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" @@ -57,4 +57,4 @@ msg_ok "Created Service" motd_ssh customize -cleanup_lxc +cleanup_lxc \ No newline at end of file diff --git a/install/almalinux-install.sh b/install/almalinux-install.sh index 9bed4764..0ead2dd8 100644 --- a/install/almalinux-install.sh +++ b/install/almalinux-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://almalinux.org/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/alpine-borgbackup-server-install.sh b/install/alpine-borgbackup-server-install.sh index 8144091c..a76b92ff 100644 --- a/install/alpine-borgbackup-server-install.sh +++ b/install/alpine-borgbackup-server-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: Sander Koenders (sanderkoenders) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.borgbackup.org/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/alpine-install.sh b/install/alpine-install.sh index 33ca9a52..4d8a5971 100644 --- a/install/alpine-install.sh +++ b/install/alpine-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/alpine-ntfy-install.sh b/install/alpine-ntfy-install.sh index 5ff2b431..197c46a7 100644 --- a/install/alpine-ntfy-install.sh +++ b/install/alpine-ntfy-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: cobalt (cobaltgit) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://ntfy.sh/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/anytype-server-install.sh b/install/anytype-server-install.sh index 1c8f299f..a5031f56 100644 --- a/install/anytype-server-install.sh +++ b/install/anytype-server-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://anytype.io source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/arm-install.sh b/install/arm-install.sh index 6a162d4f..a6b2e633 100644 --- a/install/arm-install.sh +++ b/install/arm-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/automatic-ripping-machine/automatic-ripping-machine source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/authentik-install.sh b/install/authentik-install.sh index 0a11d78d..ed9ca59e 100644 --- a/install/authentik-install.sh +++ b/install/authentik-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: Thieneret -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/goauthentik/authentik source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/caddymanager-install.sh b/install/caddymanager-install.sh index 780db0fb..f5d77f49 100644 --- a/install/caddymanager-install.sh +++ b/install/caddymanager-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: SlaviΕ‘a AreΕΎina (tremor021) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/caddymanager/caddymanager source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/centos-install.sh b/install/centos-install.sh index fb09d024..8ee318e9 100644 --- a/install/centos-install.sh +++ b/install/centos-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.centos.org/centos-stream/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/debian-install.sh b/install/debian-install.sh index 7208373e..45fa3fcf 100644 --- a/install/debian-install.sh +++ b/install/debian-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" @@ -20,7 +20,7 @@ $STD apt-get install -y curl wget ca-certificates msg_ok "Installed Base Dependencies" # msg_info "Downloading and executing tools.func test suite" -# bash <(curl -fsSL https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/misc/test-tools-func.sh) +# bash <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/test-tools-func.sh) # msg_ok "Test suite completed" motd_ssh diff --git a/install/deferred/maxun-install.sh b/install/deferred/maxun-install.sh index 0ad4abc8..130b90dd 100644 --- a/install/deferred/maxun-install.sh +++ b/install/deferred/maxun-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/getmaxun/maxun source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/deferred/maybe_death/kanba-install.sh b/install/deferred/maybe_death/kanba-install.sh index 5255f408..55027ce4 100644 --- a/install/deferred/maybe_death/kanba-install.sh +++ b/install/deferred/maybe_death/kanba-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/Kanba-co/kanba source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/deferred/ocis-install.sh b/install/deferred/ocis-install.sh index dd2e155d..1214dc3a 100644 --- a/install/deferred/ocis-install.sh +++ b/install/deferred/ocis-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/deferred/piler-install.sh b/install/deferred/piler-install.sh index 3e823f14..bd90a451 100644 --- a/install/deferred/piler-install.sh +++ b/install/deferred/piler-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.mailpiler.org/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/deferred/rybbit-install.sh b/install/deferred/rybbit-install.sh index 5025d960..8f45864e 100644 --- a/install/deferred/rybbit-install.sh +++ b/install/deferred/rybbit-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/rybbit-io/rybbit source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/devuan-install.sh b/install/devuan-install.sh index 5d9e7ecc..cbd60de1 100644 --- a/install/devuan-install.sh +++ b/install/devuan-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.devuan.org/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/discourse-install.sh b/install/discourse-install.sh index b1ca5457..47a5cb0a 100644 --- a/install/discourse-install.sh +++ b/install/discourse-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.discourse.org/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/fedora-install.sh b/install/fedora-install.sh index a600331b..e9f1609b 100644 --- a/install/fedora-install.sh +++ b/install/fedora-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://fedoraproject.org/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/garmin-grafana-install.sh b/install/garmin-grafana-install.sh index 3d3af1c4..3bc2e815 100644 --- a/install/garmin-grafana-install.sh +++ b/install/garmin-grafana-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: aliaksei135 -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/arpanghosh8453/garmin-grafana source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/gentoo-install.sh b/install/gentoo-install.sh index 843646b2..afa4ccbc 100644 --- a/install/gentoo-install.sh +++ b/install/gentoo-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.gentoo.org/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/github-runner-install.sh b/install/github-runner-install.sh index 0440dc27..4d7533d1 100644 --- a/install/github-runner-install.sh +++ b/install/github-runner-install.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # Copyright (c) 2021-2026 community-scripts ORG -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://docs.github.com/en/actions/hosting-your-own-runners source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/hoodik-install.sh b/install/hoodik-install.sh index c7adcc68..4e81df1b 100644 --- a/install/hoodik-install.sh +++ b/install/hoodik-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/hudikhq/hoodik source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/igotify-install.sh b/install/igotify-install.sh index 613c9b99..17dce235 100644 --- a/install/igotify-install.sh +++ b/install/igotify-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: pfassina -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/androidseb25/iGotify-Notification-Assistent source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/isponsorblocktv-install.sh b/install/isponsorblocktv-install.sh index fb9c89c4..8cce9c01 100644 --- a/install/isponsorblocktv-install.sh +++ b/install/isponsorblocktv-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: Matthew Stern (sternma) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/dmunozv04/iSponsorBlockTV source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/lemonade-install.sh b/install/lemonade-install.sh index cfc1cbae..9d17d3e7 100644 --- a/install/lemonade-install.sh +++ b/install/lemonade-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: community-scripts -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://lemonade-server.ai source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" @@ -35,4 +35,4 @@ msg_ok "Enabled Service" motd_ssh customize -cleanup_lxc +cleanup_lxc \ No newline at end of file diff --git a/install/localagi-install.sh b/install/localagi-install.sh index 39b35f6f..86bae1e6 100644 --- a/install/localagi-install.sh +++ b/install/localagi-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: BillyOutlast -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/mudler/LocalAGI source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/mcphub-install.sh b/install/mcphub-install.sh index 9d8b58e3..ade514ff 100644 --- a/install/mcphub-install.sh +++ b/install/mcphub-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: BillyOutlast -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/samanhappy/mcphub | Docs: https://docs.mcphubx.com/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/nextexplorer-install.sh b/install/nextexplorer-install.sh index 3136adce..34770db9 100644 --- a/install/nextexplorer-install.sh +++ b/install/nextexplorer-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: vhsdream -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/nxzai/nextExplorer source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/openeuler-install.sh b/install/openeuler-install.sh index 1bac15be..b323b786 100644 --- a/install/openeuler-install.sh +++ b/install/openeuler-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.openeuler.org/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/opensuse-install.sh b/install/opensuse-install.sh index 053adff1..e41dccbf 100644 --- a/install/opensuse-install.sh +++ b/install/opensuse-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://www.opensuse.org/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/oxicloud-install.sh b/install/oxicloud-install.sh index 8b22209c..c3cdd070 100644 --- a/install/oxicloud-install.sh +++ b/install/oxicloud-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: vhsdream -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/DioCrafts/OxiCloud source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/pixelfed-install.sh b/install/pixelfed-install.sh index 08cafeb0..65a28cb3 100644 --- a/install/pixelfed-install.sh +++ b/install/pixelfed-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://pixelfed.org/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/postiz-install.sh b/install/postiz-install.sh index 422669a2..2a0fece2 100644 --- a/install/postiz-install.sh +++ b/install/postiz-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/gitroomhq/postiz-app source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/rockylinux-install.sh b/install/rockylinux-install.sh index ffb99a82..247377dc 100644 --- a/install/rockylinux-install.sh +++ b/install/rockylinux-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://rockylinux.org/ source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/simplelogin-install.sh b/install/simplelogin-install.sh index 092bab43..278587fe 100644 --- a/install/simplelogin-install.sh +++ b/install/simplelogin-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/simple-login/app source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/skylite-ux-install.sh b/install/skylite-ux-install.sh index b0bfb891..c81f0f81 100644 --- a/install/skylite-ux-install.sh +++ b/install/skylite-ux-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: bzumhagen -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/Wetzel402/Skylite-UX source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/step-ca-install.sh b/install/step-ca-install.sh index 6191c0b1..aa45b7da 100644 --- a/install/step-ca-install.sh +++ b/install/step-ca-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: Joerg Heinemann (heinemannj) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/smallstep/certificates source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/swarmui-install.sh b/install/swarmui-install.sh index 1aa3fac4..de384091 100644 --- a/install/swarmui-install.sh +++ b/install/swarmui-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: community-scripts -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/mcmonkeyprojects/SwarmUI source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/twenty-install.sh b/install/twenty-install.sh index b82810dd..e4661871 100644 --- a/install/twenty-install.sh +++ b/install/twenty-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/twentyhq/twenty source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/install/ubuntu-install.sh b/install/ubuntu-install.sh index d771c54f..80aee17c 100644 --- a/install/ubuntu-install.sh +++ b/install/ubuntu-install.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/install/yamtrack-install.sh b/install/yamtrack-install.sh index cd2b452f..a3720b79 100644 --- a/install/yamtrack-install.sh +++ b/install/yamtrack-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/FuzzyGrim/Yamtrack source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" diff --git a/misc/alpine-install.func b/misc/alpine-install.func index 8701552e..d299b508 100644 --- a/misc/alpine-install.func +++ b/misc/alpine-install.func @@ -6,7 +6,7 @@ if ! command -v curl >/dev/null 2>&1; then apk update && apk add curl >/dev/null 2>&1 fi -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/core.func") source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/error_handler.func") load_functions @@ -144,7 +144,7 @@ motd_ssh() { echo -e "echo -e \"${YW} OS: ${GN}${OS_NAME} - Version: ${OS_VERSION}${CL}\"" >>"$PROFILE_FILE" echo -e "echo -e \"${YW} Hostname: ${GN}\$(hostname)${CL}\"" >>"$PROFILE_FILE" echo -e "echo -e \"${YW} IP Address: ${GN}${IP}${CL}\"" >>"$PROFILE_FILE" - echo -e "echo -e \"${YW} Repository: ${GN}https://github.com/community-unscripted/ProxmoxVED${CL}\"" >>"$PROFILE_FILE" + echo -e "echo -e \"${YW} Repository: ${GN}https://github.com/community-scripts/ProxmoxVED${CL}\"" >>"$PROFILE_FILE" echo "echo \"\"" >>"$PROFILE_FILE" if [[ "${SSH_ROOT}" == "yes" ]]; then @@ -186,6 +186,6 @@ EOF msg_ok "Customized Container" fi - echo "bash -c \"\$(curl -fsSL https://github.com/community-unscripted/ProxmoxVED/raw/main/ct/${app}.sh)\"" >/usr/bin/update + echo "bash -c \"\$(curl -fsSL https://github.com/community-scripts/ProxmoxVED/raw/main/ct/${app}.sh)\"" >/usr/bin/update chmod +x /usr/bin/update } diff --git a/misc/api.func b/misc/api.func index 78f9120f..84d439d3 100644 --- a/misc/api.func +++ b/misc/api.func @@ -53,7 +53,7 @@ STATUS_TIMEOUT=10 # - Inspects /proc/$$/cmdline and $0 to find the source URL # - Maps detected repo to one of three canonical values: # * "ProxmoxVE" β€” official community-scripts/ProxmoxVE (production) -# * "ProxmoxVED" β€” official community-unscripted/ProxmoxVED (development) +# * "ProxmoxVED" β€” official community-scripts/ProxmoxVED (development) # * "external" β€” any fork or unknown source # - Fallback: "ProxmoxVED" (CI sed transforms ProxmoxVED β†’ ProxmoxVE on promotion) # - Sets and exports REPO_SOURCE global variable @@ -93,7 +93,7 @@ detect_repo_source() { # Map detected owner/repo to canonical repo_source value case "$owner_repo" in community-scripts/ProxmoxVE) REPO_SOURCE="ProxmoxVE" ;; - community-unscripted/ProxmoxVED) REPO_SOURCE="ProxmoxVED" ;; + community-scripts/ProxmoxVED) REPO_SOURCE="ProxmoxVED" ;; "") # No URL detected β€” use hardcoded fallback # This value must match the repo: ProxmoxVE for production, ProxmoxVED for dev diff --git a/misc/build.func b/misc/build.func index 2ce1e2c2..1b24c1f7 100644 --- a/misc/build.func +++ b/misc/build.func @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Copyright (c) 2021-2026 community-scripts ORG # Author: tteck (tteckster) | MickLesk | michelroegl-brunner -# License: MIT | https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/LICENSE +# License: MIT | https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/LICENSE # ============================================================================== # BUILD.FUNC - LXC CONTAINER BUILD & CONFIGURATION @@ -85,7 +85,7 @@ variables() { # Configurable base URL for development β€” override with COMMUNITY_SCRIPTS_URL # See docs/DEV_MODE.md for details -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") @@ -3292,7 +3292,7 @@ diagnostics_check() { DIAGNOSTICS=yes #This file is used to store the diagnostics settings for the Community-Scripts API. -#https://git.community-scripts.org/community-unscripted/ProxmoxVED/discussions/1836 +#https://git.community-scripts.org/community-scripts/ProxmoxVED/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. @@ -3317,7 +3317,7 @@ EOF DIAGNOSTICS=no #This file is used to store the diagnostics settings for the Community-Scripts API. -#https://git.community-scripts.org/community-unscripted/ProxmoxVED/discussions/1836 +#https://git.community-scripts.org/community-scripts/ProxmoxVED/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. @@ -6006,7 +6006,7 @@ description() { cat < - Logo + Logo

${APP} LXC

@@ -6019,15 +6019,15 @@ description() { - Git + Git - Discussions + Discussions - Issues + Issues EOF diff --git a/misc/core.func b/misc/core.func index 279689d6..39589c0c 100644 --- a/misc/core.func +++ b/misc/core.func @@ -1,6 +1,6 @@ #!/usr/bin/env bash # Copyright (c) 2021-2026 community-scripts ORG -# License: MIT | https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/LICENSE +# License: MIT | https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/LICENSE # ============================================================================== # CORE FUNCTIONS - LXC CONTAINER UTILITIES @@ -791,7 +791,7 @@ exit_script() { get_header() { local app_name=$(echo "${APP,,}" | tr -d ' ') local app_type=${APP_TYPE:-ct} # Default to 'ct' if not set - local header_url="https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/${app_type}/headers/${app_name}" + local header_url="https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/${app_type}/headers/${app_name}" local local_header_path="/usr/local/community-scripts/headers/${app_type}/${app_name}" mkdir -p "$(dirname "$local_header_path")" diff --git a/misc/install.func b/misc/install.func index be580b3c..393118f5 100644 --- a/misc/install.func +++ b/misc/install.func @@ -2,7 +2,7 @@ # Author: tteck (tteckster) # Co-Author: MickLesk # Co-Author: michelroegl-brunner -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # ============================================================================== # INSTALL.FUNC - UNIFIED CONTAINER INSTALLATION & SETUP @@ -173,7 +173,7 @@ _bootstrap() { fi # Configurable base URL for development β€” override with COMMUNITY_SCRIPTS_URL - COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" + COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" # Source core functions source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/core.func") @@ -786,7 +786,7 @@ echo -e "${RD:-}WARNING: This is a DEVELOPMENT version (ProxmoxVED). Do NOT use echo -e "${YW:-} OS: ${GN:-}${os_name} - Version: ${os_version}${CL:-}" echo -e "${YW:-} Hostname: ${GN:-}\$(hostname)${CL:-}" echo -e "${YW:-} IP Address: ${GN:-}\$(hostname -I 2>/dev/null | awk '{print \$1}' || ip -4 addr show scope global | awk '/inet /{print \$2}' | cut -d/ -f1 | head -1)${CL:-}" -echo -e "${YW:-} Repository: ${GN:-}https://github.com/community-unscripted/ProxmoxVED${CL:-}" +echo -e "${YW:-} Repository: ${GN:-}https://github.com/community-scripts/ProxmoxVED${CL:-}" echo "" EOF @@ -944,7 +944,7 @@ EOF # Create update script # Use var_os for OS-based containers, otherwise use app name local update_script_name="${var_os:-$app}" - echo "bash -c \"\$(curl -fsSL https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/ct/${update_script_name}.sh)\"" >/usr/bin/update + echo "bash -c \"\$(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/ct/${update_script_name}.sh)\"" >/usr/bin/update chmod +x /usr/bin/update # Inject SSH authorized keys if provided diff --git a/misc/tools.func b/misc/tools.func index d64de1e7..e2486f63 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -8539,4 +8539,4 @@ function fetch_and_deploy_gl_release() { echo "$version" >"$version_file" msg_ok "Deployed: $app ($version)" rm -rf "$tmpdir" -} +} \ No newline at end of file diff --git a/misc/vm-core.func b/misc/vm-core.func index d9452ac5..f40576de 100644 --- a/misc/vm-core.func +++ b/misc/vm-core.func @@ -1,5 +1,5 @@ # Copyright (c) 2021-2026 community-scripts ORG -# License: MIT | https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/LICENSE +# License: MIT | https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/LICENSE set -euo pipefail SPINNER_PID="" @@ -35,7 +35,7 @@ load_functions() { get_header() { local app_name=$(echo "${APP,,}" | tr ' ' '-') local app_type=${APP_TYPE:-vm} - local header_url="https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/${app_type}/headers/${app_name}" + local header_url="https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/${app_type}/headers/${app_name}" local local_header_path="/usr/local/community-scripts/headers/${app_type}/${app_name}" mkdir -p "$(dirname "$local_header_path")" @@ -595,7 +595,7 @@ set_description() { cat < - Logo + Logo

${NSAPP} VM

@@ -608,15 +608,15 @@ set_description() { - GitHub + GitHub - Discussions + Discussions - Issues + Issues EOF diff --git a/tools/addon/_template.sh b/tools/addon/_template.sh index f3b385ee..39851fef 100644 --- a/tools/addon/_template.sh +++ b/tools/addon/_template.sh @@ -9,8 +9,8 @@ # ADDON TEMPLATE - Use this as starting point for new addon scripts # ============================================================================== -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/core.func) -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/tools.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/core.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/tools.func) # ============================================================================== # CONFIGURATION @@ -291,7 +291,7 @@ echo -e "\${BL}━━━━━━━━━━━━━━━━━━━━━ echo "" # Source tools.func for update functions -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/tools.func) 2>/dev/null || { +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/tools.func) 2>/dev/null || { echo -e "\${RD}Failed to load tools.func\${CL}" exit 1 } diff --git a/tools/addon/code-server.sh b/tools/addon/code-server.sh index 5fae1016..7d1c3b72 100644 --- a/tools/addon/code-server.sh +++ b/tools/addon/code-server.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE function header_info { cat <<"EOF" diff --git a/tools/addon/cronmaster.sh b/tools/addon/cronmaster.sh index 3a2a400c..faf2780b 100644 --- a/tools/addon/cronmaster.sh +++ b/tools/addon/cronmaster.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://github.com/fccview/cronmaster if ! command -v curl &>/dev/null; then @@ -10,9 +10,9 @@ if ! command -v curl &>/dev/null; then apt-get update >/dev/null 2>&1 apt-get install -y curl >/dev/null 2>&1 fi -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/core.func) -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/tools.func) -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/error_handler.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/core.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/tools.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/error_handler.func) # Enable error handling set -Eeuo pipefail @@ -155,7 +155,7 @@ EOF cat <<'UPDATEEOF' >/usr/local/bin/update_cronmaster #!/usr/bin/env bash # CronMaster Update Script -type=update bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/tools/addon/cronmaster.sh)" +type=update bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/tools/addon/cronmaster.sh)" UPDATEEOF chmod +x /usr/local/bin/update_cronmaster msg_ok "Created update script (/usr/local/bin/update_cronmaster)" diff --git a/tools/addon/glances.sh b/tools/addon/glances.sh index 70b644ff..2928fe46 100644 --- a/tools/addon/glances.sh +++ b/tools/addon/glances.sh @@ -48,7 +48,7 @@ install_glances_debian() { msg_ok "Installed dependencies" msg_info "Setting up Python + uv" - source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/tools.func) + source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/tools.func) setup_uv PYTHON_VERSION="3.12" msg_ok "Setup Python + uv" @@ -118,7 +118,7 @@ install_glances_alpine() { msg_ok "Installed dependencies" msg_info "Setting up Python + uv" - source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/main/misc/tools.func) + source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/tools.func) setup_uv PYTHON_VERSION="3.12" msg_ok "Setup Python + uv" diff --git a/tools/addon/grafana-loki.sh b/tools/addon/grafana-loki.sh index 06a95039..9d782272 100644 --- a/tools/addon/grafana-loki.sh +++ b/tools/addon/grafana-loki.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" color diff --git a/tools/addon/meilisearch-ui.sh b/tools/addon/meilisearch-ui.sh index 5879c3c3..2df901ee 100644 --- a/tools/addon/meilisearch-ui.sh +++ b/tools/addon/meilisearch-ui.sh @@ -5,13 +5,13 @@ # License: MIT if command -v curl >/dev/null 2>&1; then - source <(curl -fsSL https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/misc/core.func) + source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/core.func) load_functions elif command -v wget >/dev/null 2>&1; then - source <(wget -qO- https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/misc/core.func) + source <(wget -qO- https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/core.func) load_functions fi -source <(curl -fsSL https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/misc/tools.func) +source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/tools.func) color catch_errors diff --git a/tools/addon/rocm.sh b/tools/addon/rocm.sh index ede52147..8e8e5850 100644 --- a/tools/addon/rocm.sh +++ b/tools/addon/rocm.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: community-scripts -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://rocm.docs.amd.com # ============================================================================== diff --git a/tools/pve/container-restore-from-backup.sh b/tools/pve/container-restore-from-backup.sh index be3a2b71..d69e1c44 100644 --- a/tools/pve/container-restore-from-backup.sh +++ b/tools/pve/container-restore-from-backup.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE clear if command -v pveversion >/dev/null 2>&1; then echo -e "⚠️ Can't Run from the Proxmox Shell"; exit; fi diff --git a/tools/pve/core-restore-from-backup.sh b/tools/pve/core-restore-from-backup.sh index 4cd155a9..42289859 100644 --- a/tools/pve/core-restore-from-backup.sh +++ b/tools/pve/core-restore-from-backup.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE clear if command -v pveversion >/dev/null 2>&1; then echo -e "⚠️ Can't Run from the Proxmox Shell"; exit; fi diff --git a/tools/pve/frigate-support.sh b/tools/pve/frigate-support.sh index d9df4a4c..c48e03bf 100644 --- a/tools/pve/frigate-support.sh +++ b/tools/pve/frigate-support.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE function header_info { clear @@ -89,5 +89,5 @@ EOF echo -e "\e[1;33m \nFinished....Reboot ${CTID} LXC to apply the changes.\n \e[0m" # In the Proxmox web shell run -# bash -c "$(curl -fsSL https://github.com/community-unscripted/ProxmoxVED/raw/main/misc/frigate-support.sh)" +# bash -c "$(curl -fsSL https://github.com/community-scripts/ProxmoxVED/raw/main/misc/frigate-support.sh)" # Reboot the LXC to apply the changes diff --git a/tools/pve/host-backup.sh b/tools/pve/host-backup.sh index dcbe4e38..8e963169 100644 --- a/tools/pve/host-backup.sh +++ b/tools/pve/host-backup.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE function header_info { clear diff --git a/tools/pve/hw-acceleration.sh b/tools/pve/hw-acceleration.sh index 9ad9cf2c..5d467044 100644 --- a/tools/pve/hw-acceleration.sh +++ b/tools/pve/hw-acceleration.sh @@ -6,9 +6,9 @@ # Only supports PRIVILEGED containers for GPU passthrough. # License: MIT # Author: MickLesk (CanbiZ) -# Repo: https://github.com/community-unscripted/ProxmoxVED +# Repo: https://github.com/community-scripts/ProxmoxVED # -# Usage: bash -c "$(wget -qLO - https://github.com/community-unscripted/ProxmoxVED/raw/main/misc/hw-acceleration.sh)" +# Usage: bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVED/raw/main/misc/hw-acceleration.sh)" # # Requires: # - Proxmox VE 8.1+ @@ -25,16 +25,16 @@ # - Interactive menu system via whiptail # # Proxmox LXC Hardware Passthrough & GPU Acceleration Setup -# https://github.com/community-unscripted/ProxmoxVED +# https://github.com/community-scripts/ProxmoxVED set -euo pipefail TEMP_DIR=$(mktemp -d) trap 'rm -rf $TEMP_DIR' EXIT -source <(wget -qO- https://github.com/community-unscripted/ProxmoxVED/raw/main/tools/pve/gpu-nvidia.func) -source <(wget -qO- https://github.com/community-unscripted/ProxmoxVED/raw/main/tools/pve/gpu-intel.func) -source <(wget -qO- https://github.com/community-unscripted/ProxmoxVED/raw/main/tools/pve/gpu-amd.func) +source <(wget -qO- https://github.com/community-scripts/ProxmoxVED/raw/main/tools/pve/gpu-nvidia.func) +source <(wget -qO- https://github.com/community-scripts/ProxmoxVED/raw/main/tools/pve/gpu-intel.func) +source <(wget -qO- https://github.com/community-scripts/ProxmoxVED/raw/main/tools/pve/gpu-amd.func) function header_info() { clear diff --git a/tools/pve/pve-privilege-converter.sh b/tools/pve/pve-privilege-converter.sh index 74e593de..a8b1cb0a 100644 --- a/tools/pve/pve-privilege-converter.sh +++ b/tools/pve/pve-privilege-converter.sh @@ -10,7 +10,7 @@ if ! command -v curl >/dev/null 2>&1; then apt-get update >/dev/null 2>&1 apt-get install -y curl >/dev/null 2>&1 fi -source <(curl -fsSL https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main/misc/core.func) +source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/core.func) load_functions set -euo pipefail diff --git a/tools/pve/pyenv.sh b/tools/pve/pyenv.sh index 87cd166f..21376de1 100644 --- a/tools/pve/pyenv.sh +++ b/tools/pve/pyenv.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE set -e YW=$(echo "\033[33m") @@ -113,7 +113,7 @@ cat </srv/esphome/start.sh # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE source /srv/esphome/bin/activate esphome dashboard /srv/esphome/ diff --git a/tools/pve/update-apps.sh b/tools/pve/update-apps.sh index 6308728e..b57e7e82 100644 --- a/tools/pve/update-apps.sh +++ b/tools/pve/update-apps.sh @@ -4,7 +4,7 @@ # Author: BvdBerg01 | Co-Author: remz1337 # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -source <(curl -fsSL https://raw.githubusercontent.com/community-unscripted/ProxmoxVED/refs/heads/main/misc/core.func) +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/refs/heads/main/misc/core.func) # ============================================================================= # CONFIGURATION VARIABLES diff --git a/tools/pve/usb-passthrough.sh b/tools/pve/usb-passthrough.sh index 3c2b6fc7..c5205961 100644 --- a/tools/pve/usb-passthrough.sh +++ b/tools/pve/usb-passthrough.sh @@ -3,7 +3,7 @@ # Copyright (c) 2021-2026 tteck # Author: tteck (tteckster) # License: MIT -# https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE echo -e "\e[1;33m This script will allow USB passthrough to a PRIVILEGED LXC Container ONLY\e[0m" while true; do diff --git a/vm/allstarlink-vm.sh b/vm/allstarlink-vm.sh index 0399bfbc..0d8c92d3 100644 --- a/vm/allstarlink-vm.sh +++ b/vm/allstarlink-vm.sh @@ -5,7 +5,7 @@ # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE # Source: https://github.com/AllStarLink -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/archlinux-vm.sh b/vm/archlinux-vm.sh index 3881c858..1a874776 100644 --- a/vm/archlinux-vm.sh +++ b/vm/archlinux-vm.sh @@ -4,7 +4,7 @@ # Author: MickLesk (CanbiZ) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/cachyos-vm.sh b/vm/cachyos-vm.sh index 90661117..03a28971 100644 --- a/vm/cachyos-vm.sh +++ b/vm/cachyos-vm.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # ============================================================================== # CachyOS VM - Creates a CachyOS Virtual Machine @@ -10,7 +10,7 @@ # packages, custom kernels, and various desktop environment options. # ============================================================================== -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/debian-13-vm.sh b/vm/debian-13-vm.sh index 251d7b19..c979d939 100644 --- a/vm/debian-13-vm.sh +++ b/vm/debian-13-vm.sh @@ -4,7 +4,7 @@ # Author: MickLesk (CanbiZ) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/debian-vm-test-helper.sh b/vm/debian-vm-test-helper.sh index 99526b5b..3605dc7f 100644 --- a/vm/debian-vm-test-helper.sh +++ b/vm/debian-vm-test-helper.sh @@ -2,9 +2,9 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/helpers.func") @@ -361,7 +361,7 @@ DESCRIPTION=$( cat < - Logo + Logo

Debian VM

@@ -378,11 +378,11 @@ DESCRIPTION=$( - Discussions + Discussions - Issues + Issues EOF @@ -404,4 +404,4 @@ if [ "$START_VM" == "yes" ]; then fi msg_ok "Completed successfully!\n" -echo "More Info at https://github.com/community-unscripted/ProxmoxVED/discussions/836" +echo "More Info at https://github.com/community-scripts/ProxmoxVED/discussions/836" diff --git a/vm/debian-vm.sh b/vm/debian-vm.sh index 64a7f9fd..4918643a 100644 --- a/vm/debian-vm.sh +++ b/vm/debian-vm.sh @@ -2,9 +2,9 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/vm-core.func") load_functions @@ -378,4 +378,4 @@ if [ "$START_VM" == "yes" ]; then fi msg_ok "Completed successfully!\n" -msg_custom "More Info at https://github.com/community-unscripted/ProxmoxVED/discussions/836" +msg_custom "More Info at https://github.com/community-scripts/ProxmoxVED/discussions/836" diff --git a/vm/docker-vm-debug.sh b/vm/docker-vm-debug.sh index 6ce0723d..58bfeb85 100644 --- a/vm/docker-vm-debug.sh +++ b/vm/docker-vm-debug.sh @@ -4,7 +4,7 @@ # Author: thost96 (thost96) | Co-Author: michelroegl-brunner # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") # Load Cloud-Init library for VM configuration source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/cloud-init.sh") || true diff --git a/vm/docker-vm.sh b/vm/docker-vm.sh index bce44256..4e370fa2 100644 --- a/vm/docker-vm.sh +++ b/vm/docker-vm.sh @@ -2,13 +2,13 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: thost96 (thost96) | Co-Author: michelroegl-brunner | Refactored: MickLesk -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # ============================================================================== # Docker VM - Creates a Docker-ready Virtual Machine # ============================================================================== -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") 2>/dev/null source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/vm-core.func") 2>/dev/null source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/cloud-init.func") 2>/dev/null || true diff --git a/vm/haos-vm.sh b/vm/haos-vm.sh index 677673c0..1fe0c133 100644 --- a/vm/haos-vm.sh +++ b/vm/haos-vm.sh @@ -4,7 +4,7 @@ # Author: tteck (tteckster) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/k3s-vm.sh b/vm/k3s-vm.sh index 1532eff5..f5548b85 100644 --- a/vm/k3s-vm.sh +++ b/vm/k3s-vm.sh @@ -2,9 +2,9 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-unscripted/ProxmoxVED/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/vm-core.func") load_functions @@ -388,4 +388,4 @@ if [ "$START_VM" == "yes" ]; then fi msg_ok "Completed successfully!\n" -msg_custom "More Info at https://github.com/community-unscripted/ProxmoxVED/discussions/836" +msg_custom "More Info at https://github.com/community-scripts/ProxmoxVED/discussions/836" diff --git a/vm/mikrotik-routeros.sh b/vm/mikrotik-routeros.sh index 0fbf2a3c..5bb45f38 100644 --- a/vm/mikrotik-routeros.sh +++ b/vm/mikrotik-routeros.sh @@ -5,7 +5,7 @@ # License: MIT # https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/nextcloud-vm.sh b/vm/nextcloud-vm.sh index 137ebb90..76acb1ed 100644 --- a/vm/nextcloud-vm.sh +++ b/vm/nextcloud-vm.sh @@ -5,7 +5,7 @@ # License: MIT # https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/openwrt.sh b/vm/openwrt.sh index a1df996f..e120f000 100644 --- a/vm/openwrt.sh +++ b/vm/openwrt.sh @@ -7,7 +7,7 @@ # https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE # Based on work from https://i12bretro.github.io/tutorials/0405.html -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/opnsense-vm.sh b/vm/opnsense-vm.sh index 9805af0b..31c605f5 100644 --- a/vm/opnsense-vm.sh +++ b/vm/opnsense-vm.sh @@ -4,7 +4,7 @@ # Author: michelroegl-brunner # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/owncloud-vm.sh b/vm/owncloud-vm.sh index 984a72fc..b671dce8 100644 --- a/vm/owncloud-vm.sh +++ b/vm/owncloud-vm.sh @@ -5,7 +5,7 @@ # License: MIT # https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/pimox-haos-vm.sh b/vm/pimox-haos-vm.sh index 8bc68e34..6e7711e6 100644 --- a/vm/pimox-haos-vm.sh +++ b/vm/pimox-haos-vm.sh @@ -5,7 +5,7 @@ # License: MIT # https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/ubuntu2204-vm.sh b/vm/ubuntu2204-vm.sh index 5d814ce6..908ade8d 100644 --- a/vm/ubuntu2204-vm.sh +++ b/vm/ubuntu2204-vm.sh @@ -4,7 +4,7 @@ # Author: MickLesk (CanbiZ) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/ubuntu2404-vm.sh b/vm/ubuntu2404-vm.sh index 49700472..88d570c4 100644 --- a/vm/ubuntu2404-vm.sh +++ b/vm/ubuntu2404-vm.sh @@ -5,7 +5,7 @@ # License: MIT # https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/ubuntu2410-vm.sh b/vm/ubuntu2410-vm.sh index 3662fd75..76b52de0 100644 --- a/vm/ubuntu2410-vm.sh +++ b/vm/ubuntu2410-vm.sh @@ -4,7 +4,7 @@ # Author: MickLesk (CanbiZ) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") function header_info { diff --git a/vm/umbrel-os-vm.sh b/vm/umbrel-os-vm.sh index 1fa88b05..ea3beb84 100644 --- a/vm/umbrel-os-vm.sh +++ b/vm/umbrel-os-vm.sh @@ -4,7 +4,7 @@ # Author: MickLesk (CanbiZ) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/vm-core.func") load_functions diff --git a/vm/unifi-os-server-vm.sh b/vm/unifi-os-server-vm.sh index ecebf4ef..8d790a4b 100644 --- a/vm/unifi-os-server-vm.sh +++ b/vm/unifi-os-server-vm.sh @@ -4,7 +4,7 @@ # Author: MickLesk (CanbiZ) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-unscripted/ProxmoxVED/raw/branch/main}" +COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main}" source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/api.func") # Load Cloud-Init library for VM configuration source /dev/stdin <<<$(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/cloud-init.func") 2>/dev/null || true