Sha256: 686dd92e0b7ad7d97d6326f9db966346777627e31220f1ac82ceece4dd2093f7

Contents?: true

Size: 1.25 KB

Versions: 54

Compression:

Stored size: 1.25 KB

Contents

class TestLab
  class Node

    module Actions

      # Create the node
      def create
        @ui.logger.debug { "Node Create: #{self.id} " }

        please_wait(:ui => @ui, :message => format_object_action(self, 'Create', :green)) do
          @provider.create

          do_provisioner_callbacks(self, :create, @ui)
        end

        true
      end

      # Destroy the node
      def destroy
        @ui.logger.debug { "Node Destroy: #{self.id} " }

        please_wait(:ui => @ui, :message => format_object_action(self, 'Destroy', :red)) do
          @provider.destroy

          do_provisioner_callbacks(self, :destroy, @ui)
        end

        true
      end

      # Start the node
      def up
        @ui.logger.debug { "Node Up: #{self.id} " }

        please_wait(:ui => @ui, :message => format_object_action(self, 'Up', :green)) do
          @provider.up

          do_provisioner_callbacks(self, :up, @ui)
        end

        true
      end

      # Stop the node
      def down
        @ui.logger.debug { "Node Down: #{self.id} " }

        please_wait(:ui => @ui, :message => format_object_action(self, 'Down', :red)) do
          @provider.down

          do_provisioner_callbacks(self, :down, @ui)
        end

        true
      end

    end

  end
end

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
testlab-1.15.1 lib/testlab/node/actions.rb
testlab-1.15.0 lib/testlab/node/actions.rb
testlab-1.14.0 lib/testlab/node/actions.rb
testlab-1.13.0 lib/testlab/node/actions.rb
testlab-1.12.0 lib/testlab/node/actions.rb
testlab-1.11.7 lib/testlab/node/actions.rb
testlab-1.11.6 lib/testlab/node/actions.rb
testlab-1.11.5 lib/testlab/node/actions.rb
testlab-1.11.4 lib/testlab/node/actions.rb
testlab-1.11.3 lib/testlab/node/actions.rb
testlab-1.11.2 lib/testlab/node/actions.rb
testlab-1.11.1 lib/testlab/node/actions.rb
testlab-1.11.0 lib/testlab/node/actions.rb
testlab-1.10.0 lib/testlab/node/actions.rb
testlab-1.9.2 lib/testlab/node/actions.rb
testlab-1.9.1 lib/testlab/node/actions.rb
testlab-1.9.0 lib/testlab/node/actions.rb
testlab-1.8.5 lib/testlab/node/actions.rb
testlab-1.8.4 lib/testlab/node/actions.rb
testlab-1.8.3 lib/testlab/node/actions.rb