From 639eb8e839dc372a5138e6e62959d056feeab158 Mon Sep 17 00:00:00 2001 From: Andrew Jones Date: Thu, 10 Sep 2026 04:33:16 -0400 Subject: [PATCH 1/2] fix(solidtime): prevent composer install from hanging on root prompt (#17146) composer's root/superuser safety prompt blocks on stdin during update_script, since the container's terminal isn't attached to answer it. Set COMPOSER_ALLOW_SUPERUSER=1 to suppress the prompt, matching composer's documented approach for running as root non-interactively. --- ct/solidtime.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/solidtime.sh b/ct/solidtime.sh index 8af419367..d124ef169 100644 --- a/ct/solidtime.sh +++ b/ct/solidtime.sh @@ -45,7 +45,7 @@ function update_script() { msg_info "Updating Application" cd /opt/solidtime - $STD composer install --no-dev --optimize-autoloader + COMPOSER_ALLOW_SUPERUSER=1 $STD composer install --no-dev --optimize-autoloader $STD npm install $STD npm run build $STD php artisan migrate --force From 6109ccf128a55e3d7741bfd4cd78cf2e66f70259 Mon Sep 17 00:00:00 2001 From: "community-scripts-pr-app[bot]" <189241966+community-scripts-pr-app[bot]@users.noreply.github.com> Date: Thu, 10 Sep 2026 08:33:51 +0000 Subject: [PATCH 2/2] Update CHANGELOG.md (#17151) Co-authored-by: github-actions[bot] --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e315af460..d80fa8843 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -546,6 +546,7 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit - #### 🐞 Bug Fixes + - fix(solidtime): prevent composer install from hanging on root prompt [@supersoju](https://github.com/supersoju) ([#17146](https://github.com/community-scripts/ProxmoxVE/pull/17146)) - fix(hermesagent): wait for root gateway cleanup [@steveonjava](https://github.com/steveonjava) ([#17147](https://github.com/community-scripts/ProxmoxVE/pull/17147)) ## 2026-09-09