aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenmgr/lib/server
diff options
context:
space:
mode:
Diffstat (limited to 'tools/xenmgr/lib/server')
-rw-r--r--tools/xenmgr/lib/server/SrvDomain.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/xenmgr/lib/server/SrvDomain.py b/tools/xenmgr/lib/server/SrvDomain.py
index 0ef5676941..07d3cfa7de 100644
--- a/tools/xenmgr/lib/server/SrvDomain.py
+++ b/tools/xenmgr/lib/server/SrvDomain.py
@@ -18,12 +18,12 @@ class SrvDomain(SrvDir):
self.xd = XendDomain.instance()
self.xconsole = XendConsole.instance()
- def op_start(self, op, req):
- val = self.xd.domain_start(self.dom.id)
+ def op_unpause(self, op, req):
+ val = self.xd.domain_unpause(self.dom.id)
return val
- def op_stop(self, op, req):
- val = self.xd.domain_stop(self.dom.id)
+ def op_pause(self, op, req):
+ val = self.xd.domain_pause(self.dom.id)
return val
def op_shutdown(self, op, req):