|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] XendDomainInfo.py:
ChangeSet 1.1615, 2005/05/31 16:20:43+01:00, cl349@xxxxxxxxxxxxxxxxxxxx
XendDomainInfo.py:
g/c vm_restore: no longer used.
Signed-off-by: Christian Limpach <Christian.Limpach@xxxxxxxxxxxx>
XendDomainInfo.py | 22 ----------------------
1 files changed, 22 deletions(-)
diff -Nru a/tools/python/xen/xend/XendDomainInfo.py
b/tools/python/xen/xend/XendDomainInfo.py
--- a/tools/python/xen/xend/XendDomainInfo.py 2005-05-31 12:03:55 -04:00
+++ b/tools/python/xen/xend/XendDomainInfo.py 2005-05-31 12:03:55 -04:00
@@ -192,28 +192,6 @@
vm.savedinfo = None
return vm
-def vm_restore(src, progress=False):
- """Restore a VM from a disk image.
-
- src saved state to restore
- progress progress reporting flag
- raises VmError for invalid configuration
- """
- vm = XendDomainInfo()
- ostype = "linux" #todo Set from somewhere (store in the src?).
- restorefn = getattr(xc, "%s_restore" % ostype)
- d = restorefn(state_file=src, progress=progress)
- dom = int(d['dom'])
- if dom < 0:
- raise VmError('restore failed')
- try:
- vmconfig = sxp.from_string(d['vmconfig'])
- config = sxp.child_value(vmconfig, 'config')
- except Exception, ex:
- raise VmError('config error: ' + str(ex))
- vm.dom_construct(dom, config)
- return vm
-
def dom_get(dom):
"""Get info from xen for an existing domain.
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
|
|
|
|