Class: Veewee::Command::Vagrant::Up

Inherits:
Vagrant::Command::Base
  • Object
show all
Defined in:
lib/veewee/command/vagrant/up.rb

Instance Method Summary collapse

Instance Method Details

#executeObject

Raises:

  • (::Vagrant::Errors::CLIInvalidUsage)


7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/veewee/command/vagrant/up.rb', line 7

def execute
  options = {}

  opts = OptionParser.new do |opts|
    opts.banner = "Starts a basebox that was built"
    opts.separator ""
    opts.separator "Usage: vagrant basebox up <boxname>"


    opts.on("-n", "--nogui", "no gui") do |n|
      options['nogui'] = n
    end

    opts.on("-d", "--debug", "enable debugging") do |d|
      options['debug'] = d
    end

  end

  # Parse the options
  argv = parse_options(opts)
  return if !argv
  raise ::Vagrant::Errors::CLIInvalidUsage, :help => opts.help.chomp if argv.length < 1

  begin
    venv=Veewee::Environment.new(options)
    venv.ui=@env.ui
    venv.providers["virtualbox"].get_box(argv[0]).up(options)
  rescue Veewee::Error => ex
    venv.ui.error ex
    exit -1
  end

end