Re: [Qemu-devel] [PATCH v12 1/6] qemu.py: better control of created files

2018-02-01 Thread Eduardo Habkost
On Mon, Jan 22, 2018 at 09:50:28PM +0100, Amador Pahim wrote: > To launch a VM, we need to create basically two files: the monitor > socket (if it's a UNIX socket) and the qemu log file. > > For the qemu log file, we currently just open the path, which will > create the file if it does not exist o

[Qemu-devel] [PATCH v12 1/6] qemu.py: better control of created files

2018-01-22 Thread Amador Pahim
To launch a VM, we need to create basically two files: the monitor socket (if it's a UNIX socket) and the qemu log file. For the qemu log file, we currently just open the path, which will create the file if it does not exist or overwrite the file if it does exist. For the monitor socket, if it al