#!/bin/sh
-if pidof wpa_supplicant hostapd valgrind.bin > /dev/null; then
+if pidof wpa_supplicant hostapd valgrind.bin hlr_auc_gw > /dev/null; then
RUNNING=yes
else
RUNNING=no
# give some time for hostapd and wpa_supplicant to complete deinit
sleep 0.5
for i in `seq 1 5`; do
- if pidof wpa_supplicant hostapd valgrind.bin > /dev/null; then
+ if pidof wpa_supplicant hostapd valgrind.bin hlr_auc_gw > /dev/null; then
echo "Waiting for processes to exit (1)"
sleep 1
else
done
fi
-if pidof wpa_supplicant hostapd > /dev/null; then
- echo "wpa_supplicant/hostapd did not exit - try to force them to die"
+if pidof wpa_supplicant hostapd hlr_auc_gw > /dev/null; then
+ echo "wpa_supplicant/hostapd/hlr_auc_gw did not exit - try to force them to die"
sudo killall -9 -q hostapd
sudo killall -9 -q wpa_supplicant
+ killall -9 -q hlr_auc_gw
for i in `seq 1 5`; do
- if pidof wpa_supplicant hostapd > /dev/null; then
+ if pidof wpa_supplicant hostapd hlr_auc_gw > /dev/null; then
echo "Waiting for processes to exit (2)"
sleep 1
else
fi
done
-for i in /tmp/wpas-wlan0 /tmp/wpas-wlan1 /tmp/wpas-wlan2 /var/run/hostapd-global; do
+for i in /tmp/wpas-wlan0 /tmp/wpas-wlan1 /tmp/wpas-wlan2 /var/run/hostapd-global /tmp/hlr_auc_gw.sock /tmp/wpa_ctrl_* /tmp/eap_sim_db_*; do
if [ -e $i ]; then
echo "Waiting for ctrl_iface $i to disappear"
sleep 1