From b658e58534755f61d150fbbd328786131714857d Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Thu, 27 May 2021 13:25:29 -0400 Subject: [PATCH] require -m to modify sim.cfg file --- config.sh | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/config.sh b/config.sh index c4be04e0..d2ff251a 100755 --- a/config.sh +++ b/config.sh @@ -6,24 +6,24 @@ if [ "$1" = "-r" ]; then echo "Restarting CubeSatSim" sudo systemctl restart cubesatsim exit -elif [ "$1" = -"a" ]; then +elif [ "$1" = "-a" ]; then echo "changing CubeSatSim to AFSK mode" - sudo echo "ARG1=a" >> .mode + sudo echo "ARG1=a" > .mode sudo systemctl restart cubesatsim exit elif [ "$1" = "-f" ]; then echo "changing CubeSatSim to FSK mode" - sudo echo "ARG1=f" >> .mode + sudo echo "ARG1=f" > .mode sudo systemctl restart cubesatsim exit elif [ "$1" = "-b" ]; then echo "changing CubeSatSim to BPSK mode" - sudo echo "ARG1=b" >> .mode + sudo echo "ARG1=b" > .mode sudo systemctl restart cubesatsim exit elif [ "$1" = "-s" ]; then echo "changing CubeSatSim to SSTV mode" - sudo echo "ARG1=s" >> .mode + sudo echo "ARG1=s" > .mode sudo systemctl restart cubesatsim exit elif [ "$1" = "-h" ]; then @@ -37,12 +37,13 @@ elif [ "$1" = "-h" ]; then echo " -b Change to BPSK mode" echo " -s Change to SSTV mode" echo " -r Restarts CubeSatsim software" + echo " -m Modified the configuration file sim.cfg" + echo " You can change callsign, reset count, or" + echo " latitude and longitude (used for APRS)" echo - echo "Without any options, modifies configuration file" - echo "sim.cfg. You can change callsign, reset count, or" - echo "latitude and longitude (used for APRS)" exit -fi + +elif [ "$1" = "-m" ]; then echo -e "\nConfiguration script for CubeSatSim\n" @@ -127,5 +128,7 @@ echo $callsign $resets $lat $long > sim.cfg echo "Restarting CubeSatSim with new configuraation file" +fi + sudo systemctl restart cubesatsim