Class: Veewee::Command::BaseboxValidate

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

Instance Method Summary collapse

Instance Method Details

#executeObject

Raises:

  • (Vagrant::Errors::CLIInvalidUsage)


4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/veewee/command/basebox_validate.rb', line 4

def execute
  options = {}

  opts = OptionParser.new do |opts|
    opts.banner = "Validates a box against vagrant compliancy rules"
    opts.separator ""
    opts.separator "Usage: vagrant basebox validate <boxname>"

    opts.on("-u", "--user", "user to login with") do |u|
      options['user'] = u
    end
  end

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

  Veewee::Session.validate_box(argv[0], options)
end