mirror of https://gitlab.com/hp3icc/emq-TE1.git
145 lines
5.4 KiB
Plaintext
145 lines
5.4 KiB
Plaintext
cat > /bin/menu-mmdvm <<- "EOF"
|
|
#!/bin/bash
|
|
while : ; do
|
|
choix=$(whiptail --title "Raspbian Proyect HP3ICC Menu MMDVMHost" --menu "Suba o Baje con las flechas del teclado y seleccione el numero de opcion." 24 50 16 \
|
|
1 " Editar MMDVMHost " \
|
|
2 " Editar DMRGateway " \
|
|
3 " Editar YSFGateway " \
|
|
4 " Editar YSF2DMR " \
|
|
5 " Start&Restart service MMDVM " \
|
|
6 " Stop service MMDVM " \
|
|
7 " Dashboard ON " \
|
|
8 " Dashboard Off " \
|
|
9 " Editar Puerto http " \
|
|
10 " Editar HTML " \
|
|
11 " Editar Dashboard " \
|
|
12 " Dashboard TG Name FreeDMR " \
|
|
13 " Dashboard TG Name Brandmeister " \
|
|
14 " 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/MMDVMHost/MMDVM.ini;;
|
|
2)
|
|
sudo nano /opt/DMRGateway/DMRGateway.ini;;
|
|
3)
|
|
sudo nano /opt/YSFGateway2/YSFGateway.ini;;
|
|
4)
|
|
sudo nano /opt/YSF2DMRGW/YSF2DMR.ini;;
|
|
5)
|
|
sh /opt/data-file.sh && cronedit.sh '* */24 * * *' 'sh /opt/data-file.sh' add
|
|
sudo systemctl stop mmdvmh.service
|
|
if cat /opt/MMDVMHost/MMDVM.ini | grep ServiceStart=0 >/dev/null 2>&1
|
|
then
|
|
sudo systemctl disable mmdvmh.service
|
|
elif cat /opt/MMDVMHost/MMDVM.ini | grep ServiceStart=1 >/dev/null 2>&1
|
|
then
|
|
sudo systemctl start mmdvmh.service
|
|
sudo systemctl enable mmdvmh.service
|
|
fi
|
|
|
|
sudo systemctl stop ysfgw.service
|
|
if cat /opt/YSFGateway2/YSFGateway.ini | grep ServiceStart=0 >/dev/null 2>&1
|
|
then
|
|
sudo systemctl disable ysfgw.service
|
|
elif cat /opt/YSFGateway2/YSFGateway.ini | grep ServiceStart=1 >/dev/null 2>&1
|
|
then
|
|
sudo systemctl start ysfgw.service
|
|
sudo systemctl enable ysfgw.service
|
|
fi
|
|
|
|
sudo systemctl stop ysf2dmrgw.service
|
|
if cat /opt/YSF2DMRGW/YSF2DMR.ini | grep ServiceStart=0 >/dev/null 2>&1
|
|
then
|
|
sudo systemctl disable ysf2dmrgw.service
|
|
elif cat /opt/YSF2DMRGW/YSF2DMR.ini | grep ServiceStart=1 >/dev/null 2>&1
|
|
then
|
|
sudo systemctl start ysf2dmrgw.service
|
|
sudo systemctl enable ysf2dmrgw.service
|
|
fi
|
|
|
|
sudo systemctl stop dmrgw.service
|
|
if cat /opt/DMRGateway/DMRGateway.ini | grep ServiceStart=0 >/dev/null 2>&1
|
|
then
|
|
sudo systemctl disable dmrgw.service
|
|
elif cat /opt/DMRGateway/DMRGateway.ini | grep ServiceStart=1 >/dev/null 2>&1
|
|
then
|
|
sudo systemctl start dmrgw.service
|
|
sudo systemctl enable dmrgw.service
|
|
fi
|
|
;;
|
|
6)
|
|
if systemctl status ysf2dmr.service | grep disable >/dev/null 2>&1
|
|
then
|
|
cronedit.sh '* */24 * * *' 'sh /opt/data-file.sh' remove
|
|
fi
|
|
sudo systemctl stop mmdvmh.service && sudo systemctl disable mmdvmh.service && systemctl stop ysf2dmrgw.service && sudo systemctl stop dmrgw.service ;;
|
|
7)
|
|
sudo systemctl restart logtailer-mmdvmh.service && sudo systemctl enable logtailer-mmdvmh.service && sudo systemctl restart http.server-mmdvmh.service && sudo systemctl enable http.server-mmdvmh.service && cronedit.sh '* */24 * * *' 'sh /bin/tg-name.sh' add ;;
|
|
8)
|
|
sudo systemctl stop logtailer-mmdvmh.service && sudo systemctl disable logtailer-mmdvmh.service && sudo systemctl stop http.server-mmdvmh.service && sudo systemctl disable http.server-mmdvmh.service && cronedit.sh '* */24 * * *' 'sh /bin/tg-name.sh' remove ;;
|
|
9)
|
|
sudo nano /lib/systemd/system/http.server-mmdvmh.service && sudo systemctl daemon-reload ;;
|
|
10)
|
|
sudo nano /opt/MMDVMHost-Websocketboard/html/index.html ;;
|
|
11)
|
|
sudo nano /opt/MMDVMHost-Websocketboard/html/js/config.js ;;
|
|
12)
|
|
if [ -f "/bin/tg-name.sh" ]
|
|
then
|
|
rm /bin/tg-name.sh
|
|
fi
|
|
cat /opt/tg-name-fdmr.txt >> /bin/tg-name.sh && sh /bin/tg-name.sh ;;
|
|
13)
|
|
if [ -f "/bin/tg-name.sh" ]
|
|
then
|
|
rm /bin/tg-name.sh
|
|
fi
|
|
cat /opt/tg-name-bm.txt >> /bin/tg-name.sh && sh /bin/tg-name.sh ;;
|
|
14)
|
|
break;
|
|
esac
|
|
done
|
|
exit 0
|
|
EOF
|
|
#######
|
|
cat > /opt/tg-name-fdmr.txt <<- "EOF"
|
|
#!/bin/bash
|
|
###############################################################################################################
|
|
# FreeDMR List TG
|
|
###############################################################################################################
|
|
wget http://downloads.freedmr.uk/downloads/talkgroup_ids.csv -O /opt/MMDVMHost-Websocketboard/html/data/TG_List.csv
|
|
sed -i 's/^ */DMR,2,/' /opt/MMDVMHost-Websocketboard/html/data/TG_List.csv
|
|
sed -i 's/,/ /4' /opt/MMDVMHost-Websocketboard/html/data/TG_List.csv
|
|
echo "DMR,2,9990,Parrot TG9990" >> /opt/MMDVMHost-Websocketboard/html/data/TG_List.csv
|
|
EOF
|
|
cat > /opt/tg-name-bm.txt <<- "EOF"
|
|
#!/bin/bash
|
|
###############################################################################################################
|
|
# BrandMeister List TG
|
|
###############################################################################################################
|
|
wget http://www.pistar.uk/downloads/TGList_BM.txt -O /opt/MMDVMHost-Websocketboard/html/data/TG_List.csv
|
|
sed -i 's/;0;/,/' /opt/MMDVMHost-Websocketboard/html/data/TG_List.csv
|
|
sed -i 's/;/,/' /opt/MMDVMHost-Websocketboard/html/data/TG_List.csv
|
|
sed -i 's/^ */DMR,2,/' /opt/MMDVMHost-Websocketboard/html/data/TG_List.csv
|
|
sed -i 's/,/ /4' /opt/MMDVMHost-Websocketboard/html/data/TG_List.csv
|
|
echo "DMR,2,9990,Parrot TG9990" >> /opt/MMDVMHost-Websocketboard/html/data/TG_List.csv
|
|
EOF
|
|
################################################################################################################
|
|
if [ -f "/bin/tg-name.sh" ]
|
|
then
|
|
rm /bin/tg-name.sh
|
|
fi
|
|
cat /opt/tg-name-bm.txt >> /bin/tg-name.sh
|
|
chmod +x /bin/tg-name.sh
|
|
chmod +x /bin/menu-mmdvm
|
|
sh /bin/tg-name.sh
|