From cf44ee82d37a12181aff1c447121b06bcd6e562e Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 16 Mar 2026 12:02:06 -0400 Subject: [PATCH] Update config don't restart/stop pacsatsim for beacon on/off --- config | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/config b/config index 7d0ed195..9be7c3e1 100755 --- a/config +++ b/config @@ -1158,9 +1158,9 @@ elif [ "$1" = "-o" ]; then echo "Turn beacon telemetry ON" sudo rm /home/pi/CubeSatSim/beacon_off > /dev/null 2>&1 sudo systemctl restart transmit - if [ "$MODE" = "p" ]; then - sudo systemctl restart pacsatsim - fi +# if [ "$MODE" = "p" ]; then +# sudo systemctl restart pacsatsim +# fi else echo "Transmit beacon telemetry is on" @@ -1168,12 +1168,12 @@ elif [ "$1" = "-o" ]; then echo "Turn beacon telemetry OFF" touch /home/pi/CubeSatSim/beacon_off - if [ "$MODE" = "p" ]; then - sudo systemctl stop pacsatsim - sudo systemctl stop transmit - else +# if [ "$MODE" = "p" ]; then +# sudo systemctl stop pacsatsim +# sudo systemctl stop transmit +# else sudo systemctl restart transmit - fi +# fi fi sleep 3 fi