Organizes 11 projects for Cerbo GX/Venus OS into a single repository: - axiom-nmea: Raymarine LightHouse protocol decoder - dbus-generator-ramp: Generator current ramp controller - dbus-lightning: Blitzortung lightning monitor - dbus-meteoblue-forecast: Meteoblue weather forecast - dbus-no-foreign-land: noforeignland.com tracking - dbus-tides: Tide prediction from depth + harmonics - dbus-vrm-history: VRM cloud history proxy - dbus-windy-station: Windy.com weather upload - mfd-custom-app: MFD app deployment package - venus-html5-app: Custom Victron HTML5 app fork - watermaker: Watermaker PLC control UI Adds root README, .gitignore, project template, and per-project .gitignore files. Sensitive config files excluded via .gitignore with .example templates provided. Made-with: Cursor
16 lines
390 B
Bash
16 lines
390 B
Bash
#!/bin/bash
|
|
# Restart NFL Tracking service
|
|
|
|
SERVICE_DIR=""
|
|
if [ -d "/service/dbus-no-foreign-land" ]; then
|
|
SERVICE_DIR="/service/dbus-no-foreign-land"
|
|
elif [ -d "/opt/victronenergy/service/dbus-no-foreign-land" ]; then
|
|
SERVICE_DIR="/opt/victronenergy/service/dbus-no-foreign-land"
|
|
else
|
|
echo "Service not found"
|
|
exit 1
|
|
fi
|
|
|
|
svc -t "$SERVICE_DIR"
|
|
echo "Restarted NFL Tracking"
|