- 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>
15 lines
272 B
Plaintext
Executable File
15 lines
272 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="Bee: bring up network interfaces via DHCP"
|
|
|
|
depend() {
|
|
need localmount
|
|
before bee-audit-debug
|
|
}
|
|
|
|
start() {
|
|
ebegin "Bringing up network interfaces"
|
|
/usr/local/bin/bee-network.sh >> /var/log/bee-network.log 2>&1
|
|
eend 0
|
|
}
|