1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

add ability to show interface's ip address with qemu agent. Add checking agent if installed or not

This commit is contained in:
catborise 2019-12-23 15:48:11 +03:00
parent adfdad013c
commit 592112590c
6 changed files with 122 additions and 23 deletions

View file

@ -266,6 +266,7 @@ def instance(request, compute_id, vname):
compute.password,
compute.type,
vname)
status = conn.get_status()
autostart = conn.get_autostart()
bootmenu = conn.get_bootmenu()
@ -282,7 +283,7 @@ def instance(request, compute_id, vname):
cur_memory = conn.get_cur_memory()
title = conn.get_title()
description = conn.get_description()
networks = conn.get_net_device()
networks = conn.get_net_devices()
qos = conn.get_all_qos()
disks = conn.get_disk_devices()
media = conn.get_media_devices()