- bee-* init.d scripts had mode 644 in git — OpenRC silently skipped them, causing bee-network/bee-nvidia/bee-audit to never start at boot - bee-network.sh also lacked executable bit - Remove -q from udhcpc (was quitting after first lease, no renewal) - Add autologin root on tty1 via /etc/inittab - Inject build date + git commit + versions into motd at build time Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
558 B
Plaintext
Executable File
22 lines
558 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="Bee: run hardware audit (debug mode — SSH stays up after)"
|
|
|
|
depend() {
|
|
need localmount
|
|
after bee-network
|
|
}
|
|
|
|
start() {
|
|
ebegin "Running hardware audit"
|
|
/usr/local/bin/audit --output stdout > /var/log/bee-audit.json 2>/var/log/bee-audit.log
|
|
local rc=$?
|
|
if [ $rc -eq 0 ]; then
|
|
einfo "Audit complete: /var/log/bee-audit.json"
|
|
einfo "SSH in and inspect results. Dropbear is running."
|
|
else
|
|
ewarn "Audit finished with errors — check /var/log/bee-audit.log"
|
|
fi
|
|
eend 0
|
|
}
|