Skip to content
Snippets Groups Projects
Commit 4b4fac1a authored by sguazt's avatar sguazt
Browse files

Libcloud: fixed a minor bugs (added missing parameters).

parent 5acb8869
No related branches found
No related tags found
No related merge requests found
......@@ -32,14 +32,14 @@ class LibcloudInstance(Instance):
def extra(self):
return self._node.extra
def destroy():
def destroy(self):
return self._node.destroy()
def reboot():
def reboot(self):
return self._node.reboot()
def start():
def start(self):
return self._node.start()
def stop():
def stop(self):
return self._node.stop_node()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment