1
0
Fork 0

[fix] starting virtmanager with correct hypervisor uri

master
Vladimir Serov 2019-12-29 19:08:36 +03:00
parent 4ce9b6ee86
commit 0823b2f028
No known key found for this signature in database
GPG Key ID: 6BA7C26C3FDF7BB3
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ func start(l *libvirt.Libvirt, name string, verbose bool) {
}
}
cmd := exec.Command("virt-viewer", "appvm_"+name)
cmd := exec.Command("virt-viewer", "-c", "qemu:///system", "appvm_"+name)
cmd.Start()
}