Compare commits

...

3 Commits

Author SHA1 Message Date
Michel Roegl-Brunner 57c2c88c53 Stop spinner for deleted/disabled info messages
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-16 11:08:31 +02:00
Michel Roegl-Brunner 3b79629261 Add runtime script status guard and deleted-script stubs.
Prevent disabled/deleted scripts from running updates with clear user messages, and ensure deleted ct scripts are stubbed automatically so legacy update commands no longer fail with 404.
2026-06-16 11:08:03 +02:00
community-scripts-pr-app[bot] f13782704e Update CHANGELOG.md (#15128)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-06-16 08:57:08 +00:00
7 changed files with 27 additions and 6 deletions
+1 -1
View File
@@ -279,7 +279,7 @@ color
msg_error "This script is no longer available in community-scripts."
msg_error "${deletedMessage.replace(/"/g, '\\"')}"
msg_info "More info: https://community-scripts.org/scripts/${slug}"
msg_warn "More info: https://community-scripts.org/scripts/${slug}"
exit 1
`;
fs.writeFileSync(stubPath, content);
+6
View File
@@ -483,6 +483,12 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
</details>
## 2026-06-16
### 🆕 New Scripts
- Add runtime status guard and deleted script stubs [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#15125](https://github.com/community-scripts/ProxmoxVE/pull/15125))
## 2026-06-15
### 🚀 Updated Scripts
+1 -1
View File
@@ -11,5 +11,5 @@ color
msg_error "This script is no longer available in community-scripts."
msg_error "The Booklore or the Grimmory Fork will for now not return to community-scripts. Due to the unstable nature of these projects we decided to remove them and will decide at later point if they come back, which will most likley not happen. Plese do not create Issues for this."
msg_info "More info: https://community-scripts.org/scripts/booklore"
msg_warn "More info: https://community-scripts.org/scripts/booklore"
exit 1
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
APP="Ente"
header_info "$APP"
variables
color
msg_error "This script is no longer available in community-scripts."
msg_error "This script was removed and cannot be installed or updated."
msg_warn "More info: https://community-scripts.org/scripts/ente"
exit 1
+1 -1
View File
@@ -11,5 +11,5 @@ color
msg_error "This script is no longer available in community-scripts."
msg_error "This script was removed and cannot be installed or updated."
msg_info "More info: https://community-scripts.org/scripts/litellm"
msg_warn "More info: https://community-scripts.org/scripts/litellm"
exit 1
+1 -1
View File
@@ -11,5 +11,5 @@ color
msg_error "This script is no longer available in community-scripts."
msg_error "Repository is archived. Minio is gone"
msg_info "More info: https://community-scripts.org/scripts/minio"
msg_warn "More info: https://community-scripts.org/scripts/minio"
exit 1
+2 -2
View File
@@ -3677,7 +3677,7 @@ runtime_script_status_guard() {
msg_error "This script is no longer available in community-scripts."
[[ -n "$deleted_message" ]] && msg_error "$deleted_message"
[[ -z "$deleted_message" ]] && msg_error "This script was removed and cannot be installed or updated."
msg_info "More info: ${info_url}"
msg_warn "More info: ${info_url}"
return 1
fi
@@ -3685,7 +3685,7 @@ runtime_script_status_guard() {
msg_error "This script is currently disabled in community-scripts."
[[ -n "$disable_message" ]] && msg_error "$disable_message"
[[ -z "$disable_message" ]] && msg_error "Updates and installs are temporarily disabled for this script."
msg_info "More info: ${info_url}"
msg_warn "More info: ${info_url}"
return 1
fi