ia64/xen-unstable
changeset 6663:7c269dd2cf1f
Destroy domain before cleaning it up.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
author | cl349@firebug.cl.cam.ac.uk |
---|---|
date | Tue Sep 06 18:14:31 2005 +0000 (2005-09-06) |
parents | 534671924039 |
children | 513ba63787fe |
files | tools/python/xen/xend/XendDomainInfo.py |
line diff
1.1 --- a/tools/python/xen/xend/XendDomainInfo.py Tue Sep 06 17:43:36 2005 +0000 1.2 +++ b/tools/python/xen/xend/XendDomainInfo.py Tue Sep 06 18:14:31 2005 +0000 1.3 @@ -796,8 +796,8 @@ class XendDomainInfo: 1.4 def destroy(self): 1.5 """Clenup vm and destroy domain. 1.6 """ 1.7 + self.destroy_domain() 1.8 self.cleanup() 1.9 - self.destroy_domain() 1.10 self.saveToDB() 1.11 return 0 1.12