Class: Vagrant::Command::BoxAdd
- Defined in:
- lib/vagrant/command/box_add.rb
Instance Method Summary collapse
Methods inherited from Base
Methods included from Util::SafePuts
Constructor Details
This class inherits a constructor from Vagrant::Command::Base
Instance Method Details
#execute ⇒ Object
6 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 |
# File 'lib/vagrant/command/box_add.rb', line 6 def execute = {} opts = OptionParser.new do |opts| opts. = "Usage: vagrant box add <name> <url>" opts.separator "" opts.on("-f", "--force", "Overwrite an existing box if it exists.") do |f| [:force] = f end end # Parse the options argv = (opts) return if !argv raise Errors::CLIInvalidUsage, :help => opts.help.chomp if argv.length < 2 # If we're force adding, then be sure to destroy any existing box if it # exists. if [:force] existing = @env.boxes.find(argv[0]) existing.destroy if existing end @env.boxes.add(argv[0], argv[1]) # Success, exit status 0 0 end |