本文整理汇总了Python中OSConf.update_embed方法的典型用法代码示例。如果您正苦于以下问题:Python OSConf.update_embed方法的具体用法?Python OSConf.update_embed怎么用?Python OSConf.update_embed使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OSConf
的用法示例。
在下文中一共展示了OSConf.update_embed方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: embed
# 需要导入模块: import OSConf [as 别名]
# 或者: from OSConf import update_embed [as 别名]
def embed(app_name, embed_cart, user_email=None, user_passwd=None):
if user_email is None:
(user_email, user_passwd) = get_default_rhlogin()
obj = re.search(r"(^[^-]+)-(.*)", embed_cart)
action = obj.group(1)
embed_cart = obj.group(2)
cmd = "rhc cartridge %s %s -a %s -l %s -p '%s' %s" % (action,
embed_cart,
app_name,
user_email,
user_passwd,
RHTEST_RHC_CLIENT_OPTIONS)
if action == "remove":
cmd += " --confirm"
(ret, output) = command_getstatusoutput(cmd)
if ret == 0:
try:
ret2 = OSConf.update_embed(app_name, action, embed_cart, output)
if ret2 != 0:
log.error("Unable to cache embedded info.")
except Exception, e:
log.error("Unable to cache embedded info: %s"% e)