Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
Commitc93a203unknown_key

Merge PR #55: bootstrap installs unzip for Bun

Merge PR #55: bootstrap installs unzip for Bun

fix(bootstrap): unzip required for Bun installer</title>
<parameter name="body">Bootstrap on fresh Ubuntu 24.04 fails at Bun install with 'unzip is required'. Added unzip + xz-utils + tar to the apt-get list.</parameter>
</invoke>
CC LABS App committed on May 8, 2026Parents: 8cabf28 ee80a15
1 file changed+11c93a203bdc67b78840a766f520b6a04037c2b81d
1 changed file+1−1
Modifiedscripts/bootstrap-hetzner.sh+1−1View fileUnifiedSplit
7878export DEBIAN_FRONTEND=noninteractive
7979apt-get update -qq
8080
81for pkg in git curl ca-certificates gnupg debian-keyring debian-archive-keyring apt-transport-https openssl; do
81for pkg in git curl ca-certificates gnupg debian-keyring debian-archive-keyring apt-transport-https openssl unzip xz-utils tar; do
8282 dpkg -l | grep -qw "$pkg" || apt-get install -y -qq "$pkg"
8383done
8484ok "base packages installed"
8585