本文整理汇总了Python中juliabox.jbox_util.JBoxCfg.read方法的典型用法代码示例。如果您正苦于以下问题:Python JBoxCfg.read方法的具体用法?Python JBoxCfg.read怎么用?Python JBoxCfg.read使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类juliabox.jbox_util.JBoxCfg
的用法示例。
在下文中一共展示了JBoxCfg.read方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: copy_for_boot
# 需要导入模块: from juliabox.jbox_util import JBoxCfg [as 别名]
# 或者: from juliabox.jbox_util.JBoxCfg import read [as 别名]
return new_img_file, new_pkg_file
def copy_for_boot():
for f in (JBoxVol.USER_HOME_IMG, JBoxVol.PKG_IMG):
dname, fname = os.path.split(f)
copyname = expanduser(os.path.join("~", fname))
shutil.copyfile(f, copyname)
if __name__ == "__main__":
conf_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '../../engine/conf'))
conf_file = os.path.join(conf_dir, 'tornado.conf')
user_conf_file = os.path.join('/jboxengine/conf', 'jbox.user')
JBoxCfg.read(conf_file, user_conf_file)
JBoxCfg.dckr = docker.Client()
LoggerMixin.configure()
db.configure()
SessContainer.configure()
VolMgr.configure()
plugin = JBPluginCloud.jbox_get_plugin(JBPluginCloud.JBP_BUCKETSTORE)
if plugin is None:
VolMgr.log_error("No plugin found for bucketstore")
exit(1)
ts = JBoxVol._get_user_home_timestamp()
tsstr = ts.strftime("%Y%m%d_%H%M")
VolMgr.log_debug("user_home_timestamp: %s", tsstr)