Sha256: 51ee8b74b4a6d481a2270b35fc74490286cf783b26ad637970f6d5df2fe32234
Contents?: true
Size: 1.67 KB
Versions: 3
Compression:
Stored size: 1.67 KB
Contents
class TestLab class Container module Lifecycle # Setup the container # # Attempts to setup the container. We first create the container, then # attempt to bring it online. Afterwards the containers provisioner is # called. # # @return [Boolean] True if successful. def setup @ui.logger.debug { "Container Setup: #{self.id} " } please_wait(:ui => @ui, :message => format_object_action(self, 'Setup', :green)) do self.provisioners.each do |provisioner| @ui.logger.info { ">>>>> CONTAINER PROVISIONER SETUP: #{provisioner} <<<<<" } p = provisioner.new(self.config, @ui) p.respond_to?(:on_container_setup) and p.on_container_setup(self) end end true end # Teardown the container # # Attempts to teardown the container. We first call the provisioner # teardown method defined for the container, if any. Next we attempt to # offline the container. Afterwards the container is destroy. # # @return [Boolean] True if successful. def teardown @ui.logger.debug { "Container Teardown: #{self.id} " } (self.lxc.state == :not_created) and return false please_wait(:ui => @ui, :message => format_object_action(self, 'Teardown', :red)) do self.provisioners.each do |provisioner| @ui.logger.info { ">>>>> CONTAINER PROVISIONER TEARDOWN: #{provisioner} <<<<<" } p = provisioner.new(self.config, @ui) p.respond_to?(:on_container_teardown) and p.on_container_teardown(self) end end true end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
testlab-0.6.8 | lib/testlab/container/lifecycle.rb |
testlab-0.6.7 | lib/testlab/container/lifecycle.rb |
testlab-0.6.6 | lib/testlab/container/lifecycle.rb |