From 1277cbbdaba6daa484e8b8558d7acaf7d71a72aa Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Tue, 16 Dec 2025 07:15:25 -0500 Subject: [PATCH] Update config fix enable disable gpsd --- config | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config b/config index 433b6817..f2ff1fb8 100755 --- a/config +++ b/config @@ -1788,8 +1788,8 @@ elif [ "$1" = "-u" ]; then if [ "$reset" = "y" ] || [ "$reset" = "yes" ] ; then echo "gpsd set to ON" - sudo systemctl disable gpsd - sudo systemctl disable gpsd.socket + sudo systemctl enable gpsd + sudo systemctl enable gpsd.socket reboot=1 fi @@ -1802,8 +1802,8 @@ elif [ "$1" = "-u" ]; then if [ "$reset" = "y" ] || [ "$reset" = "yes" ] ; then echo "gpsd set to OFF" - sudo systemctl enable gpsd - sudo systemctl enable gpsd.socket + sudo systemctl disable gpsd + sudo systemctl disable gpsd.socket reboot=1 fi