Class: Vagrant::Command::BoxList

Inherits:
Base
  • Object
show all
Defined in:
lib/vagrant/command/box_list.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Vagrant::Command::Base

Instance Method Details

#executeObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/vagrant/command/box_list.rb', line 6

def execute
  options = {}

  opts = OptionParser.new do |opts|
    opts.banner = "Usage: vagrant box list"
  end

  # Parse the options
  argv = parse_options(opts)
  return if !argv

  boxes = @env.boxes.sort
  if boxes.empty?
    return @env.ui.warn(I18n.t("vagrant.commands.box.no_installed_boxes"), :prefix => false)
  end
  boxes.each { |b| @env.ui.info(b.name, :prefix => false) }
end