Sha256: 4555eaf0d1dcfbccf42c8caf39ea89248f144d55ea39cd27072f97cb6a72a667

Contents?: true

Size: 364 Bytes

Versions: 1

Compression:

Stored size: 364 Bytes

Contents

#encoding: utf-8
module Vagabond
  module Actions
    module Start

      def _start
        name_required!
        ui.info "#{ui.color('Vagabond:', :bold)} Starting node: #{ui.color(name, :green)}"
        do_start
        ui.info ui.color('  -> STARTED', :green)
      end

      protected
      
      def do_start
        lxc.start
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagabond-0.2.10 lib/vagabond/actions/start.rb