Add name argument to allow the VNC/SDL window title to be set
This commit is contained in:
parent
19a25fb269
commit
50e4397145
1
vmmd
1
vmmd
|
@ -988,6 +988,7 @@ class VirtualMachine(DbObject):
|
||||||
raise RuntimeError('Unknown arch')
|
raise RuntimeError('Unknown arch')
|
||||||
argv = [prog]
|
argv = [prog]
|
||||||
argv.extend(['-daemonize', '-pidfile', self._qemu_pidfile()])
|
argv.extend(['-daemonize', '-pidfile', self._qemu_pidfile()])
|
||||||
|
argv.extend(['-name', self['name']])
|
||||||
argv.extend(['-machine', machine_arg, '-cpu', cpu_arg])
|
argv.extend(['-machine', machine_arg, '-cpu', cpu_arg])
|
||||||
ethdev = 'virtio-net' if self['ostype'] == 'linux' else 'e1000'
|
ethdev = 'virtio-net' if self['ostype'] == 'linux' else 'e1000'
|
||||||
blkopt = ''
|
blkopt = ''
|
||||||
|
|
Loading…
Reference in New Issue