Bug 1565968
Summary: | Fail to update graphic listen type by virt-xml | |||
---|---|---|---|---|
Product: | Red Hat Enterprise Linux 7 | Reporter: | Xiaodai Wang <xiaodwan> | |
Component: | virt-manager | Assignee: | Pavel Hrdina <phrdina> | |
Status: | CLOSED ERRATA | QA Contact: | Virtualization Bugs <virt-bugs> | |
Severity: | low | Docs Contact: | ||
Priority: | low | |||
Version: | 7.5 | CC: | juzhou, mxie, mzhan, tzheng | |
Target Milestone: | rc | |||
Target Release: | --- | |||
Hardware: | Unspecified | |||
OS: | Unspecified | |||
Whiteboard: | ||||
Fixed In Version: | virt-manager-1.5.0-2.el7 | Doc Type: | If docs needed, set a value | |
Doc Text: | Story Points: | --- | ||
Clone Of: | ||||
: | 1690687 (view as bug list) | Environment: | ||
Last Closed: | 2019-08-06 13:07:59 UTC | Type: | Bug | |
Regression: | --- | Mount Type: | --- | |
Documentation: | --- | CRM: | ||
Verified Versions: | Category: | --- | ||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
Cloudforms Team: | --- | Target Upstream Version: | ||
Embargoed: | ||||
Bug Depends On: | ||||
Bug Blocks: | 1690687 |
Description
Xiaodai Wang
2018-04-11 08:05:51 UTC
Upstream commit: commit a0b42327c6bb587c20628f8bc946c6041f61818a Author: Pavel Hrdina <phrdina> Date: Fri Feb 22 16:32:39 2019 +0100 graphics: move all listen code into one place I can reproduce this issue with package: virt-manager-1.4.3-3.el7.noarch Then try to verify this bug with new build: virt-manager-1.5.0-3.el7.noarch virt-install-1.5.0-3.el7.noarch libvirt-4.5.0-12.el7.x86_64 qemu-kvm-rhev-2.12.0-26.el7.x86_64 libvirt-python-4.5.0-1.el7.x86_64 Steps: Scenario-1 1.Set graphics listen type to none. <graphics type='vnc'> <listen type='none'/> </graphics> 2.Check modification of listen type and listen address on virt-xml successfully. 2.1#virt-xml test1 --edit --graphics listen=127.0.0.1 Domain test1 XML configuration edited. 2.2#virsh dumpxml test1 | grep graphics <graphics type='vnc' port='-1' autoport='yes' listen='127.0.0.1'> <listen type='address' address='127.0.0.1'/> </graphics> Result:Listen type is changed from 'none' to 'address' and address is added successfully. Scenario-2 1.Set graphics listen type to socket. <graphics type='vnc'> <listen type='socket'/> </graphics> 2.Check modification of listen type and listen address on virt-xml successfully. 2.1#virt-xml test1 --edit --graphics listen=127.0.0.1 Domain test1 XML configuration edited. 2.2#virsh dumpxml test1 | grep graphics <graphics type='vnc' port='-1' autoport='yes' listen='127.0.0.1'> <listen type='address' address='127.0.0.1'/> </graphics> Result:Listen type is changed from 'socket' to 'address' and address is added successfully. So based on above two scenarios, I move thist bug from ON_QA to VERIFIED. Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2019:2232 |