[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] Fix 'xm reboot'
# HG changeset patch # User kfraser@xxxxxxxxxxxxxxxxxxxxx # Date 1189782339 -3600 # Node ID 9f4f7023304176283faf8edc6a3d4260e5a99763 # Parent c36292e83f07539ad4973accf499554d4a34647a Fix 'xm reboot' Signed-off-by: Jim Fehlig <jfehlig@xxxxxxxxxx> --- tools/python/xen/xend/XendDomainInfo.py | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -r c36292e83f07 -r 9f4f70233041 tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py Fri Sep 14 16:04:33 2007 +0100 +++ b/tools/python/xen/xend/XendDomainInfo.py Fri Sep 14 16:05:39 2007 +0100 @@ -2167,7 +2167,7 @@ class XendDomainInfo: raise VmError('Invalid VM Name') dom = XendDomain.instance().domain_lookup_nr(name) - if dom and dom.domid != self.domid: + if dom and dom.domid and dom.domid != self.domid: raise VmError("VM name '%s' already exists%s" % (name, dom.domid is not None and _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |