def build_from_source(): try: (egg_name, egg_path) = tools.build_egg(self.zstack_virtualrouter.source) self.zstack_virtualrouter.dist_egg = egg_path self.zstack_virtualrouter.dist_service_file = os.path.join(self.zstack_virtualrouter.source, "zstack-virtualrouter") except Exception as e: raise BuildError(str(e))
def build_from_source(): try: (egg_name, egg_path) = tools.build_egg(self.zstack_sftp.source) self.zstack_sftp.dist_egg = egg_path self.zstack_sftp.dist_service_file = os.path.join(self.zstack_sftp.source, "zstack-sftpbackupstorage") except Exception as e: raise BuildError(str(e))
def build_from_source(): try: (egg_name, egg_path) = tools.build_egg(self.zstack_kvmagent.source) self.zstack_kvmagent.dist_egg = egg_path self.zstack_kvmagent.dist_service_file = os.path.join(self.zstack_kvmagent.source, 'zstack-kvmagent') except Exception as e: raise BuildError(str(e))
def build_from_source(): try: (egg_name, egg_path) = tools.build_egg(self.zstack_sftp.source) self.zstack_sftp.dist_egg = egg_path self.zstack_sftp.dist_service_file = os.path.join( self.zstack_sftp.source, "zstack-sftpbackupstorage") except Exception as e: raise BuildError(str(e))
def build_from_source(): try: (egg_name, egg_path) = tools.build_egg(self.zstack_virtualrouter.source) self.zstack_virtualrouter.dist_egg = egg_path self.zstack_virtualrouter.dist_service_file = os.path.join( self.zstack_virtualrouter.source, "zstack-virtualrouter") except Exception as e: raise BuildError(str(e))
def build_from_source(): try: (egg_name, egg_path) = tools.build_egg(self.zstack_kvmagent.source) self.zstack_kvmagent.dist_egg = egg_path self.zstack_kvmagent.dist_service_file = os.path.join( self.zstack_kvmagent.source, 'zstack-kvmagent') except Exception as e: raise BuildError(str(e))
def build_from_source(): try: (egg_name, egg_path) = tools.build_egg(self.zstack_lib.source) self.zstack_lib.dist_egg = egg_path except Exception as e: raise BuildError(str(e))