Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
vmdriver
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1e442b1b
authored
Nov 12, 2013
by
Guba Sándor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vmdriver: adding list_domains_info
parent
198a35f6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
vmdriver.py
+16
-0
No files found.
vmdriver.py
View file @
1e442b1b
...
...
@@ -211,6 +211,22 @@ def list_domains():
@celery.task
@req_connection
@wrap_libvirtError
def
list_domains_info
():
""" List the running domains.
:return list: List of domains info dict.
"""
domain_list
=
[]
for
i
in
Connection
.
get
()
.
listDomainsID
():
dom
=
Connection
.
get
()
.
lookupByID
(
i
)
domain_list
.
append
(
_parse_info
(
dom
.
info
()))
return
domain_list
@celery.task
@req_connection
@wrap_libvirtError
def
lookupByName
(
name
):
""" Return with the requested Domain. """
return
Connection
.
get
()
.
lookupByName
(
name
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment