summary refs log tree commit diff stats
path: root/gitlab/issues_text/target_missing/host_missing/accel_missing/981
blob: 620d5df45ab8182777dad3a285d1f8857aa66988 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
VNC UNIX sockets are not deleted
Description of problem:
After exiting QEMU a unix VNC socket file is left behind. Upon termination I would expect it to remove the socket file like it does for example with a monitor unix socket.
Steps to reproduce:
```
   rm -f foo.socket
   qemu-system-x86_64 -vnc unix:foo.socket
   # Exit QEMU
   ls foo.socket
   ```