From 53896b14502064012e33ff423dada0ff9717538c Mon Sep 17 00:00:00 2001 From: Michael Joshua Saul Date: Wed, 25 Feb 2026 23:14:53 -0700 Subject: [PATCH] fix: align with ProxmoxVED contribution guidelines - Point build.func URL to ProxmoxVED repo with curl -s - Update license URLs to ProxmoxVED - Add core dependencies (curl, sudo, mc) per template requirements --- ct/plane.sh | 4 ++-- install/plane-install.sh | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ct/plane.sh b/ct/plane.sh index 3be1ce6c..c76303a4 100644 --- a/ct/plane.sh +++ b/ct/plane.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/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: onionrings29 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://plane.so APP="Plane" diff --git a/install/plane-install.sh b/install/plane-install.sh index ca78834a..ccdd3501 100644 --- a/install/plane-install.sh +++ b/install/plane-install.sh @@ -2,7 +2,7 @@ # Copyright (c) 2021-2026 community-scripts ORG # Author: onionrings29 -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # Source: https://plane.so source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" @@ -15,6 +15,9 @@ update_os msg_info "Installing Dependencies" $STD apt-get install -y \ + curl \ + sudo \ + mc \ jq \ nginx \ build-essential \