30 lines
689 B
Ruby
Executable File
30 lines
689 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
begin
|
|
require File.expand_path('../../.bundle/environment', __FILE__)
|
|
rescue LoadError
|
|
# Fallback on rubygems
|
|
require "rubygems"
|
|
end
|
|
|
|
require 'git-style-binary/command'
|
|
|
|
# Get library
|
|
libdir = File.join(File.dirname(__FILE__), '..', 'lib')
|
|
require File.expand_path('vagrant', libdir)
|
|
|
|
GitStyleBinary.command do
|
|
short_desc "reload the vagrant environment"
|
|
banner <<-EOS
|
|
Usage: #{command.full_name} #{all_options_string}
|
|
|
|
Reloads the vagrant environment. This forces a shutdown of the VM,
|
|
updates the metadata (forwarded ports, shared folders, etc.), restarts
|
|
the VM, and reruns the chef recipes.
|
|
|
|
EOS
|
|
|
|
run do |command|
|
|
Vagrant::Commands.reload
|
|
end
|
|
end
|