1
0
forked from finn/tinyboard

fix hardcoded armbian string in user creation log message

This commit is contained in:
Justin Oros
2026-04-16 10:30:47 -07:00
parent d21997af43
commit 50fb313f9a

View File

@@ -75,7 +75,7 @@ header "Armbian User Setup"
if id "$HUB_USER" >/dev/null 2>&1; then if id "$HUB_USER" >/dev/null 2>&1; then
warn "User '$HUB_USER' already exists, skipping creation." warn "User '$HUB_USER' already exists, skipping creation."
else else
info "Creating armbian user..." info "Creating $HUB_USER user..."
groupadd -g 1000 "$HUB_USER" 2>/dev/null || true groupadd -g 1000 "$HUB_USER" 2>/dev/null || true
useradd -m -u 1000 -g 1000 -s /bin/bash "$HUB_USER" useradd -m -u 1000 -g 1000 -s /bin/bash "$HUB_USER"