3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 02:18:49 +02:00

auto-t: hostapd: catch local socket remove exception

This happens if hostapd is killed ungracefully which is done in
some tests.
This commit is contained in:
James Prestwood 2021-07-29 15:21:47 -07:00 committed by Denis Kenzior
parent 1b4c6e9be8
commit 36bc4e15c3

View File

@ -118,7 +118,11 @@ class HostapdCLI:
return return
self.ctrl_sock.close() self.ctrl_sock.close()
os.remove(self.local_ctrl)
try:
os.remove(self.local_ctrl)
except:
pass
if self._hostapd_restarted: if self._hostapd_restarted:
ctx.stop_process(ctx.hostapd.process, force) ctx.stop_process(ctx.hostapd.process, force)