示例#1
0
 def repo_install(self, package):
     zs.task("Installing package %s" % package)
示例#2
0
 def pip_install(self, package):
     zs.task("Installing with pip %s" % package)
示例#3
0
 def post_install(self):
     zs.task("Clean-up target %s" % self.name)
示例#4
0
 def make_environment_sane(self):
     zs.task("Making the environment sane")
示例#5
0
 def initialize(self):
     zs.task("Initializing target %s" % self.name)
示例#6
0
 def install(self):
     zs.task("Installing target %s" % self.name)
     self.make_environment_sane()
示例#7
0
 def run_project(self):
     zs.task("Setting up project %s" % self.name)
示例#8
0
 def clean_project(self):
     zs.task("Cleaning up project %s" % self.name)
示例#9
0
 def initialize(self):
     zs.task("Initializing project %s" % self.name)
示例#10
0
 def post_deploy(self):
     zs.task("Cleaning-up deployment %s" % self.name)
示例#11
0
 def install_deploy(self):
     zs.task("Installing deployment %s" % self.name)
示例#12
0
 def initialize(self):
     zs.task("Initializing deployment %s" % self.name)
示例#13
0
 def configure(self):
     zs.task("Configuring deployment %s" % self.name)