fix(telefon): Pipecat-Bootstrap aus der Projekt-venv starten

starten.sh rief dialog.pipecat_bootstrap mit System-python3 auf, dem
gevent/greenswitch fehlen - der Bootstrap brach nach dem Neustart des
Mac mini sofort mit ModuleNotFoundError ab, und der launchd-Watchdog
konnte ihn nicht wiederbeleben.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_011csZF3rmXJSAtukDxUMFgy
This commit is contained in:
Jeuner 2026-09-14 14:02:09 +02:00
parent 3f9cfe6b4f
commit 907f511c0d

View file

@ -135,7 +135,9 @@ if [ "${status:-}" = "UP" ]; then
if pgrep -f "[d]ialog.pipecat_bootstrap" >/dev/null; then
echo "Pipecat-Bootstrap laeuft bereits."
else
nohup python3 -u -m dialog.pipecat_bootstrap >> telefon/pipecat_bootstrap.log 2>&1 &
# Aus der Projekt-venv: greenswitch/gevent fehlen im System-python3,
# dort bricht der Bootstrap sofort mit ModuleNotFoundError ab.
nohup .venv/bin/python -u -m dialog.pipecat_bootstrap >> telefon/pipecat_bootstrap.log 2>&1 &
echo "Pipecat-Bootstrap gestartet (Log: telefon/pipecat_bootstrap.log)"
fi
fi