mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01: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:
parent
1b4c6e9be8
commit
36bc4e15c3
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user