Fix Frigate crash: re-add required mqtt config section

Frigate's config schema requires an `mqtt` field even when MQTT isn't
used. Commit 40f1568 removed it along with Mosquitto, causing Frigate
to fail validation on startup. Add `mqtt.enabled: false` to satisfy
the schema without needing a broker.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-03-17 18:10:23 -07:00
commit 6617e44e5b
2 changed files with 4 additions and 0 deletions

View file

@ -1,6 +1,9 @@
database:
path: /db/frigate.db
mqtt:
enabled: false
go2rtc:
streams:
# GableCam IP is reserved in UX7 DHCP config

View file

@ -0,0 +1 @@
Fix Frigate NVR crash by re-adding required `mqtt` config section (disabled) after Mosquitto removal.