Sha256: b2c523fe864a1dcb6f058be7586481fbdd767dad56b1b88d9c65adc879f9e2a3

Contents?: true

Size: 1.82 KB

Versions: 25

Compression:

Stored size: 1.82 KB

Contents

module Fission
  class Command
    class Start < Command

      def initialize(args=[])
        super
        @options.headless = false
      end

      def execute
        option_parser.parse! @args

        if @args.empty?
          Fission.ui.output self.class.help
          Fission.ui.output ""
          Fission.ui.output_and_exit "Incorrect arguments for start command", 1
        end

        vm_name = @args.first

        vm = Fission::VM.new(vm_name)

        unless vm.exists?
          Fission.ui.output_and_exit "Unable to find the VM #{vm_name} (#{Fission::VM.path(vm_name)})", 1 
        end

        if vm.running?
          Fission.ui.output ''
          Fission.ui.output_and_exit "VM '#{vm_name}' is already running", 0
        end

        Fission.ui.output "Starting '#{vm_name}'"
        start_args = {}

        if @options.headless

          if Fission::Fusion.running?
            Fission.ui.output 'It looks like the Fusion GUI is currently running'
            Fission.ui.output 'A VM cannot be started in headless mode when the Fusion GUI is running'
            Fission.ui.output_and_exit "Exit the Fusion GUI and try again", 1
          else
            start_args[:headless] = true
          end
        end

        task = vm.start(start_args)

        if task.successful?
          Fission.ui.output "VM '#{vm_name}' started"
        else
          Fission.ui.output_and_exit "There was a problem starting the VM.  The error was:\n#{task.output}", task.code
        end
      end

      def option_parser
        optparse = OptionParser.new do |opts|
          opts.banner = "\nstart usage: fission start vm [options]"

          opts.on '--headless', 'Start the VM in headless mode (i.e. no Fusion GUI console)' do
            @options.headless = true
          end
        end

        optparse
      end

    end
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
veewee-0.5.0.alpha4 lib/fission.old/command/start.rb
veewee-0.5.0.alpha3 lib/fission.old/command/start.rb
veewee-0.5.0.alpha2 lib/fission.old/command/start.rb
veewee-0.5.0.alpha1 lib/fission.old/command/start.rb
veewee-0.4.5.1 lib/fission.old/command/start.rb
veewee-0.4.5 lib/fission.old/command/start.rb
veewee-0.4.5.pre1 lib/fission.old/command/start.rb
veewee-0.4.4 lib/fission.old/command/start.rb
veewee-0.4.3 lib/fission.old/command/start.rb
veewee-0.4.2 lib/fission.old/command/start.rb
veewee-0.4.1 lib/fission.old/command/start.rb
veewee-0.4.0 lib/fission.old/command/start.rb
veewee-0.3.12 lib/fission.old/command/start.rb
veewee-0.3.11 lib/fission.old/command/start.rb
veewee-0.3.10 lib/fission.old/command/start.rb
veewee-0.3.9 lib/fission.old/command/start.rb
veewee-0.3.0.alpha9 lib/fission/command/start.rb
veewee-0.3.0.alpha8 lib/fission/command/start.rb
veewee-0.3.0.alpha7 lib/fission/command/start.rb
veewee-0.3.0.alpha6 lib/fission/command/start.rb