From afbc84c4381711b71c7c47486b78dd6ed02424c2 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 19 Jan 2026 15:37:37 -0500 Subject: [PATCH] Update config added gpsd start and stop --- config | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config b/config index 2ce274e3..fe2469b9 100755 --- a/config +++ b/config @@ -1704,6 +1704,8 @@ elif [ "$1" = "-u" ]; then echo "gpsd set to ON" sudo systemctl enable gpsd sudo systemctl enable gpsd.socket + sudo systemctl start gpsd + sudo systemctl start gpsd.socket echo echo "Unless you configure gpsd otherwise, the is connected to serial0 on the Pi." echo "To monitor your gps device, use the command gpsmon" @@ -1722,6 +1724,8 @@ elif [ "$1" = "-u" ]; then echo "gpsd set to OFF" sudo systemctl disable gpsd sudo systemctl disable gpsd.socket + sudo systemctl stop gpsd + sudo systemctl stop gpsd.socket reboot=1 fi