[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] xend: Fix name/uuid uniqueness checks.
# HG changeset patch # User Keir Fraser <keir@xxxxxxxxxxxxx> # Date 1191315670 -3600 # Node ID a345f989722649ba01701babf60e49517e910102 # Parent 93b7f47407bce69a8c048d8a0402222fb7a08e9b xend: Fix name/uuid uniqueness checks. Signed-off-by: Daniel P. Berrange <berrange@xxxxxxxxxx> --- tools/python/xen/xend/XendDomainInfo.py | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff -r 93b7f47407bc -r a345f9897226 tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py Tue Oct 02 09:59:39 2007 +0100 +++ b/tools/python/xen/xend/XendDomainInfo.py Tue Oct 02 10:01:10 2007 +0100 @@ -74,9 +74,15 @@ def create(config): @return: An up and running XendDomainInfo instance @raise VmError: Invalid configuration or failure to start. """ - + from xen.xend import XendDomain + domconfig = XendConfig.XendConfig(sxp_obj = config) + othervm = XendDomain.instance().domain_lookup_nr(domconfig["name_label"]) + if othervm is None or othervm.domid is None: + othervm = XendDomain.instance().domain_lookup_nr(domconfig["uuid"]) + if othervm is not None and othervm.domid is not None: + raise VmError("Domain '%s' already exists with ID '%d'" % (domconfig["name_label"], othervm.domid)) log.debug("XendDomainInfo.create(%s)", scrub_password(config)) - vm = XendDomainInfo(XendConfig.XendConfig(sxp_obj = config)) + vm = XendDomainInfo(domconfig) try: vm.start() except: _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |