Skip to content
Snippets Groups Projects
Commit 3be34f57 authored by Guido Trotter's avatar Guido Trotter
Browse files

KVM: advise about VNC support on GetShellCommand

Reviewed-by: iustinp
parent 8470c8db
No related branches found
No related tags found
No related merge requests found
......@@ -621,6 +621,17 @@ class KVMHypervisor(hv_base.BaseHypervisor):
utils.ShellQuote(cls._InstanceSerial(instance.name))))
else:
shell_command = "echo 'No serial shell for instance %s'" % instance.name
vnc_bind_address = hvparams[constants.HV_VNC_BIND_ADDRESS]
if vnc_bind_address:
if instance.network_port > constants.HT_HVM_VNC_BASE_PORT:
display = instance.network_port - constants.HT_HVM_VNC_BASE_PORT
vnc_command = ("echo 'Instance has VNC listening on %s:%d"
" (display: %d)'" % (vnc_bind_address,
instance.network_port,
display))
shell_command = "%s; %s" % (vnc_command, shell_command)
return shell_command
def Verify(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment