Compare commits

...

2 Commits

Author SHA1 Message Date
MickLesk 03b518e98c baikal: fall back to composer update when lock doesn't match composer.json 2026-08-19 22:40:21 +02:00
community-scripts-pr-app[bot] 041de686e6 Update CHANGELOG.md (#16620)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-08-19 19:42:58 +00:00
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -530,6 +530,7 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
- #### 🐞 Bug Fixes
- fix: clean yarn cache after mealie frontend build to prevent disk growth [@bferd](https://github.com/bferd) ([#16609](https://github.com/community-scripts/ProxmoxVE/pull/16609))
- VictoriaMetrics: use github_api_call for release lookups so GITHUB_TOKEN is honored [@angusmaul](https://github.com/angusmaul) ([#16607](https://github.com/community-scripts/ProxmoxVE/pull/16607))
- Increase default RAM allocation for Gatus [@rmpratt1](https://github.com/rmpratt1) ([#16601](https://github.com/community-scripts/ProxmoxVE/pull/16601))
+1 -1
View File
@@ -46,7 +46,7 @@ function update_script() {
msg_info "Configuring Baikal"
cd /opt/baikal
$STD composer install
$STD composer install || { msg_warn "composer.lock doesn't match composer.json (known upstream packaging issue) - regenerating"; $STD composer update; }
msg_ok "Configured Baikal"
msg_info "Starting Service"
+1 -1
View File
@@ -25,7 +25,7 @@ PG_DB_NAME="baikal_db" PG_DB_USER="baikal_user" PG_DB_PASS="$(openssl rand -base
msg_info "Configuring Baikal"
cd /opt/baikal
$STD composer install
$STD composer install || { msg_warn "composer.lock doesn't match composer.json (known upstream packaging issue) - regenerating"; $STD composer update; }
cat <<EOF >/opt/baikal/config/baikal.yaml
database:
backend: pgsql