コード例 #1
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))
コード例 #2
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))
コード例 #3
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))
コード例 #4
0
ファイル: zstackbuild.py プロジェクト: OliverWW/cmp-vstack2
 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))
コード例 #5
0
ファイル: zstackbuild.py プロジェクト: OliverWW/cmp-vstack2
 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))
コード例 #6
0
ファイル: zstackbuild.py プロジェクト: OliverWW/cmp-vstack2
 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))
コード例 #7
0
ファイル: zstackbuild.py プロジェクト: OliverWW/cmp-vstack2
 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))
コード例 #8
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))