aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/gsm-tester/templates/quad_modem_power_cycle.sh
blob: 9262f974b9f9c58990f54eb7489554670d7aa104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
set -ex
uhubctl -p 123456 -a 0
# give a lot of time to discharge capacitors on the board
sleep 20
uhubctl -p 123456 -a 1
attempts=30
while [ "x$(uhubctl | grep -e 05c6 -e 1199 -c)" != "x{{ gsm_modems }}" ]; do
	attempts=$(($attempts - 1))
	if [ "$attempts" -le 0 ]; then
		echo "Timeout"
		exit 1
	fi
	sleep 1
done
uhubctl