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))
Beispiel #4
0
 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))
Beispiel #5
0
 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))
Beispiel #6
0
 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))
Beispiel #7
0
 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))
 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))