Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP3:GA
virt-manager.1480
53375bad-raise-value-error-when-no-ipaddr-set.p...
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 53375bad-raise-value-error-when-no-ipaddr-set.patch of Package virt-manager.1480
Subject: createinterface: raise value error when no ip addr set From: Chen Hanxiao chenhanxiao@cn.fujitsu.com Sun Mar 30 07:47:22 2014 +0800 Date: Sun Mar 30 07:47:57 2014 +0800: Git: 119025e1ef5e6b47d634c1e05d9143f0092da5c2 We could set blank ip address IP setting->Configure->Mode (static), then press "OK". And libvirt will throw an error not very helpful: Error creating interface: 'Could not define interface: XML error: could not get interface XML description: XML invalid - Element protocol failed to validate attributes. This patch will forbid setting an empty ip address. Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com> diff --git a/virtManager/createinterface.py b/virtManager/createinterface.py index 11fc9b2..4588bba 100644 --- a/virtManager/createinterface.py +++ b/virtManager/createinterface.py @@ -764,7 +764,7 @@ class vmmCreateInterface(vmmGObjectUI): def build_ip_info(self): def build_ip(addr_str): if not addr_str: - return None, None + raise ValueError(_("Please enter an IP address")) ret = addr_str.rsplit("/", 1) address = ret[0] prefix = None
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor