本文整理汇总了Python中maglica.virt.Virt.get_inactive_domain方法的典型用法代码示例。如果您正苦于以下问题:Python Virt.get_inactive_domain方法的具体用法?Python Virt.get_inactive_domain怎么用?Python Virt.get_inactive_domain使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类maglica.virt.Virt
的用法示例。
在下文中一共展示了Virt.get_inactive_domain方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_get_inactive_domain
# 需要导入模块: from maglica.virt import Virt [as 别名]
# 或者: from maglica.virt.Virt import get_inactive_domain [as 别名]
def test_get_inactive_domain():
virt = Virt()
virt.hosts[0]["conn"].defineXML(xml)
dom = virt.get_inactive_domain("test2")
eq_(dom["name"], "test2")
eq_(dom["host"], "test")
eq_(dom["state"], "shut off")
示例2: test_get_domains
# 需要导入模块: from maglica.virt import Virt [as 别名]
# 或者: from maglica.virt.Virt import get_inactive_domain [as 别名]
def test_get_domains():
virt = Virt()
virt.hosts[0]["conn"].defineXML(xml)
dom = virt.get_inactive_domain("test2")
domains = virt.get_domains()
eq_(domains[0]["name"], "test")
eq_(domains[1]["name"], "test2")
示例3: remove
# 需要导入模块: from maglica.virt import Virt [as 别名]
# 或者: from maglica.virt.Virt import get_inactive_domain [as 别名]
def remove(args):
options = {
"mandatory": ["name"],
"optional" : ["on"],
}
check_args(args, options)
name = args["name"]
virt = Virt(hosts())
dom = virt.get_inactive_domain(name)
if not dom:
(dom, host) = virt.get_active_domain(name)
if dom:
raise Exception("Active domain cannot be removed.Please stop it.")
else:
raise Exception("Domain not found.")
host = dom["host"]
if args.has_key("on"):
host = args["on"]
maglica.dispatcher.dispatch({
"type" : "vm",
"host" : host,
"action" : "remove",
"args" : args,
})