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
1 changed files with 5 additions and 1 deletions

View File

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