60 lines
1.9 KiB
Bash
60 lines
1.9 KiB
Bash
sudo cat > /bin/menu-py-aprs <<- "EOF"
|
|
#!/bin/bash
|
|
while : ; do
|
|
choix=$(whiptail --title "Raspbian Proyect HP3ICC Menu Python-APRS" --menu "Suba o Baje con las flechas del teclado y seleccione el numero de opcion:" 23 56 13 \
|
|
1 " Editar Beacon-1 " \
|
|
2 " Editar Beacon-2 " \
|
|
3 " Editar Beacon-3 " \
|
|
4 " Editar Beacon-4 " \
|
|
5 " Start/Restart Beacon-1 " \
|
|
6 " Start/Restart Beacon-2 " \
|
|
7 " Start/Restart Beacon-3 " \
|
|
8 " Start/Restart Beacon-4 " \
|
|
9 " Stop Beacon-1 " \
|
|
10 " Stop Beacon-2 " \
|
|
11 " Stop Beacon-3 " \
|
|
12 " Stop Beacon-4 " \
|
|
13 " Menu Principal " 3>&1 1>&2 2>&3)
|
|
exitstatus=$?
|
|
#on recupere ce choix
|
|
#exitstatus=$?
|
|
if [ $exitstatus = 0 ]; then
|
|
echo "Your chosen option:" $choix
|
|
else
|
|
echo "You chose cancel."; break;
|
|
fi
|
|
# case : action en fonction du choix
|
|
case $choix in
|
|
1)
|
|
sudo nano /opt/python-aprs/bcom1.py ;;
|
|
2)
|
|
sudo nano /opt/python-aprs/bcom2.py ;;
|
|
3)
|
|
sudo nano /opt/python-aprs/bcom3.py ;;
|
|
4)
|
|
sudo nano /opt/python-aprs/bcom4.py ;;
|
|
5)
|
|
sudo systemctl stop py-aprsb1.service && sudo systemctl start py-aprsb1.service && sudo systemctl enable py-aprsb1.service ;;
|
|
6)
|
|
sudo systemctl stop py-aprsb2.service && sudo systemctl start py-aprsb2.service && sudo systemctl enable py-aprsb2.service ;;
|
|
7)
|
|
sudo systemctl stop py-aprsb3.service && sudo systemctl start py-aprsb3.service && sudo systemctl enable py-aprsb3.service ;;
|
|
8)
|
|
sudo systemctl stop py-aprsb4.service && sudo systemctl start py-aprsb4.service && sudo systemctl enable py-aprsb4.service ;;
|
|
9)
|
|
sudo systemctl stop py-aprsb1.service && sudo systemctl disable py-aprsb1.service ;;
|
|
10)
|
|
sudo systemctl stop py-aprsb2.service && sudo systemctl disable py-aprsb2.service ;;
|
|
11)
|
|
sudo systemctl stop py-aprsb3.service && sudo systemctl disable py-aprsb3.service ;;
|
|
12)
|
|
sudo systemctl stop py-aprsb4.service && sudo systemctl disable py-aprsb4.service ;;
|
|
13)
|
|
break;
|
|
esac
|
|
done
|
|
exit 0
|
|
EOF
|
|
######
|
|
chmod +x /bin/menu*
|