fix(lobehub,otbr): increase heap limit and fix bind9 enable

- lobehub: bump --max-old-space-size from 4096 to 8192 (build OOMs at ~6GB)
- openthread-br: handle linked unit file bind9.service on Debian 13
This commit is contained in:
MickLesk
2026-04-04 22:15:20 +02:00
parent 20fd374b08
commit f344b69617
3 changed files with 4 additions and 3 deletions

View File

@@ -77,7 +77,8 @@ cat <<EOF >/etc/default/otbr-agent
# TCP example: spinel+hdlc+uart://192.168.1.100:9999
OTBR_AGENT_OPTS="-I wpan0 -B eth0 spinel+hdlc+uart:///dev/ttyACM0"
EOF
systemctl enable -q dbus rsyslog bind9 otbr-agent otbr-web
systemctl enable -q dbus rsyslog otbr-agent otbr-web
systemctl enable -q bind9 2>/dev/null || systemctl enable -q named 2>/dev/null || true
systemctl start -q dbus rsyslog bind9
msg_ok "Configured Services"