-
Notifications
You must be signed in to change notification settings - Fork 1
/
spot
217 lines (163 loc) · 4.11 KB
/
spot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#!/bin/bash
# MENU DE SELECTION POUR uSvxCard
#
# F4ICR&F5SWB&F8ASB 21/11/2020
#
HEIGHT=15
WIDTH=40
PATH_SCRIPT='/opt/uSvxCard/callconfig.py'
entrercall()
{
call=$(whiptail --inputbox "Entrer votre indicatif ?" 8 39 FXXXX --title "INDICATIF" 3>&1 1>&2 2>&3)
exitstatus=$?
if [ $exitstatus = 0 ]; then
echo "Indicatif: " $call
entrerdept
else
echo "Annulation";
spot
fi
}
entrerdept()
{
dept=$(whiptail --inputbox "Entrer votre departement ?" 8 39 XX --title "DEPARTEMENT" 3>&1 1>&2 2>&3)
exitstatus=$?
if [ $exitstatus = 0 ]; then
echo "Departement: " $dept
entrerband
else
echo "Annulation"; break;
entrercall
fi
}
entrerband()
{
band=$(whiptail --title "Type de HOTSPOT" --radiolist \
"Choisissez le type de HOTSPOT?" 15 60 8 \
"U" "UHF" ON \
"V" "VHF" OFF \
"H" "HOTSPOT" OFF \
"T" "TRANSPONDEUR" OFF \
"R" "RELAIS" OFF \
"10M" "LINK SIMPLEX 10M" OFF \
"T10M" "TRANSPONDEUR AVEC VOIE 10M" OFF \
"S" "SPECIAL" OFF 3>&1 1>&2 2>&3)
exitstatus=$?
if [ $exitstatus = 0 ]; then
arg1="--dept $dept"
arg2="--call $call"
arg3="--band $band"
echo $arg1
echo $arg2
echo $arg3
echo "python3 /opt/uSvxCard/callconfig.py $arg1 $arg2 $arg3"
python3 $PATH_SCRIPT $arg1 $arg2 $arg3
else
echo "Vous avez annulé";break;
entrerdept
fi
}
while : ; do
choix=$(whiptail --title "MicroSvxCard Menu 1.1 " --menu " >> Faites votre choix " 40 70 31 \
1 " Redémarrage Spotnik en mode Perroquet'95'" \
2 " Redémarrage Spotnik sur le RRF '96'" \
3 " Redémarrage Spotnik sur le FON Room '97'" \
4 " Redémarrage Spotnik sur le TEC Room '98'" \
5 " Redémarrage Spotnik sur le INT Room '99'" \
6 " Redémarrage Spotnik sur le BAV Room '100'" \
7 " Redémarrage Spotnik sur le LOC Room '101'" \
8 " Redémarrage Spotnik sur le EXP Room '102'" \
9 " Redémarrage Spotnik sur EchoLink '103'" \
10 " Redémarrage Spotnik sur le Régional '104'" \
11 " Affichage du LOG Spotnik 'CTRL C' pour quitter" \
12 " Editer Svxlink.cfg (configuration pour tous les salons)" \
13 " Editer Svxlink.el (configuration pour ECHOLINK) " \
14 " Editer le ModuleEchoLink.conf (configuration password)" \
15 " Editer l'aéroport pour la météo" \
16 " MC Midnight Commander" \
17 " Configuration du Wifi wpa_supplicant.conf" \
18 " Configuration de la carte son Alsamixer" \
19 " Configuration mail pour la fonction Moniteur de propagation" \
20 " Configuration de la carte uDraCard " \
21 " Configuration du Spotnik (Indicatif, Département, Bande) " \
22 " Configuration Dwagent " \
23 " Activation / Désactivation du Mode RAPTOR " \
24 " Activation / Désactivation de l'écran NEXTION" \
25 " Activation / Désactivation du Timer salon " \
26 " Activation / Désactivation du DTMF " \
27 " Marche / Arrêt SvxControl et SvxLink" \
28 " Redémarrage complet du système " \
29 " Arrêt complet du système " 3>&1 1>&2 2>&3)
exitstatus=$?
#on recupere ce choix
#exitstatus=$?
if [ $exitstatus = 0 ]; then
echo "votre choix :" $choix
else
echo "Annulation du choix."; break;
fi
# case : action en fonction du choix
case $choix in
1)
/etc/spotnik/restart.default ;;
2)
/etc/spotnik/restart.rrf ;;
3)
/etc/spotnik/restart.fon ;;
4)
/etc/spotnik/restart.tec ;;
5)
/etc/spotnik/restart.int ;;
6)
/etc/spotnik/restart.bav ;;
7)
/etc/spotnik/restart.loc ;;
8)
/etc/spotnik/restart.exp ;;
9)
/etc/spotnik/restart.el ;;
10)
/etc/spotnik/restart.reg ;;
11)
/etc/spotnik/view_svx ;;
12)
mcedit /etc/spotnik/svxlink.cfg ;;
13)
mcedit /etc/spotnik/svxlink.el ;;
14)
mcedit /etc/spotnik/svxlink.d/ModuleEchoLink.conf ;;
15)
mcedit /etc/spotnik/svxlink.d/ModuleMetarInfo.conf ;;
16)
mc /etc/spotnik ;;
17)
mcedit /etc/wpa_supplicant/wpa_supplicant.conf ;;
18)
alsamixer && alsactl store ;;
19)
fetchsetup ;;
20)
sh /opt/uDraCard/uDraCard_config.sh ;;
21)
entrercall ;;
22)
sh /usr/share/dwagent/native/configure ;;
23)
sh /opt/RRFRaptor/RRFRaptor.sh ;;
24)
sh /opt/uSvxCard/hmi.sh ;;
25)
echo "111#" > /tmp/dtmf_vhf
echo "111#" > /tmp/dtmf_uhf ;;
26)
echo "999#" > /tmp/dtmf_vhf
echo "999#" > /tmp/dtmf_uhf ;;
27)
sh /opt/uSvxCard/svxcontrol.sh ;;
28)
sudo reboot ;;
29)
sudo halt ;;
esac
done
exit 0