Remove debug from Buildroot manager

This commit is contained in:
Yellowcooln
2026-04-23 22:06:33 -04:00
parent 5ed6c0ef90
commit 15b683ba11
-10
View File
@@ -1176,12 +1176,6 @@ show_logs() {
tail -f "$LOGFILE"
}
run_debug() {
ensure_root
mkdir -p "$LOG_DIR" "$DATA_DIR"
exec "$VENV_PYTHON" -m repeater.main --config "$CONFIG_DIR/config.yaml"
}
delegate_to_stock_manage() {
exec bash "$SCRIPT_DIR/manage.sh" "$@"
}
@@ -1203,7 +1197,6 @@ Commands:
status Show Buildroot service status
logs Tail the Buildroot log file
uninstall Remove the Buildroot installation
debug Run repeater.main in the foreground
EOF
}
@@ -1235,9 +1228,6 @@ case "${1:-}" in
uninstall)
uninstall_repeater
;;
debug)
run_debug
;;
""|help|-h|--help)
usage
;;