本文整理匯總了Python中GLIUtility.get_uri方法的典型用法代碼示例。如果您正苦於以下問題:Python GLIUtility.get_uri方法的具體用法?Python GLIUtility.get_uri怎麽用?Python GLIUtility.get_uri使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類GLIUtility
的用法示例。
在下文中一共展示了GLIUtility.get_uri方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: load_install_profile
# 需要導入模塊: import GLIUtility [as 別名]
# 或者: from GLIUtility import get_uri [as 別名]
def load_install_profile(self):
install_profile=None
if self._install_profile == None:
if self._configuration != None:
success = GLIUtility.get_uri(self._configuration.get_profile_uri(),'/tmp/install_profile.xml')
if success:
self._logger.log("Profile downloaded succesfully, loading it now.")
self.output("Profile downloaded... loading it now...")
install_profile = GLIInstallProfile.InstallProfile()
install_profile.parse('/tmp/install_profile.xml')
else:
raise GLIException("InstallProfileError", 'fatal', 'get_install_profile', 'Could not download/copy the install profile from: ' + self._configuration.get_profile_uri())
self._install_profile = install_profile