mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-08-06 18:52:33 +00:00
migrate.py: By default try to search system qemu executable
Do not look to "../../qemu/x86_64-softmmu/qemu-system-x86_64", this will be searched with which if no found, just use the name. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Victor Toso <victortoso@redhat.com>
This commit is contained in:
parent
768360018a
commit
1a91da8689
@ -61,7 +61,7 @@ def get_args():
|
||||
parser.add_argument('--spice_port1', dest='spice_port1', type=int, default=5911)
|
||||
parser.add_argument('--spice_port2', dest='spice_port2', type=int, default=6911)
|
||||
parser.add_argument('--migrate_port', dest='migrate_port', type=int, default=8000)
|
||||
parser.add_argument('--qemu', dest='qemu', default='../../qemu/x86_64-softmmu/qemu-system-x86_64')
|
||||
parser.add_argument('--qemu', dest='qemu', default='qemu-system-x86_64')
|
||||
parser.add_argument('--log_filename', dest='log_filename', default='migrate.log')
|
||||
parser.add_argument('--image', dest='image', default='')
|
||||
parser.add_argument("--hostname", dest='hostname', default='localhost',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user