2016-03-01 10:51:47 -05:00
|
|
|
require "English"
|
|
|
|
|
2014-04-22 11:36:44 -04:00
|
|
|
module VagrantHelpers
|
|
|
|
extend self
|
|
|
|
|
|
|
|
class VagrantSSHCommandError < RuntimeError; end
|
|
|
|
|
|
|
|
at_exit do
|
2016-02-28 18:16:11 -05:00
|
|
|
if ENV["KEEP_RUNNING"]
|
2014-04-22 11:36:44 -04:00
|
|
|
puts "Vagrant vm will be left up because KEEP_RUNNING is set."
|
|
|
|
puts "Rerun without KEEP_RUNNING set to cleanup the vm."
|
|
|
|
else
|
|
|
|
vagrant_cli_command("destroy -f")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def vagrant_cli_command(command)
|
|
|
|
puts "[vagrant] #{command}"
|
|
|
|
Dir.chdir(VAGRANT_ROOT) do
|
|
|
|
`#{VAGRANT_BIN} #{command} 2>&1`.split("\n").each do |line|
|
|
|
|
puts "[vagrant] #{line}"
|
|
|
|
end
|
|
|
|
end
|
2016-03-01 10:36:05 -05:00
|
|
|
$CHILD_STATUS
|
2014-04-22 11:36:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def run_vagrant_command(command)
|
2016-09-19 12:59:57 -04:00
|
|
|
status = vagrant_cli_command("ssh -c #{command.inspect}")
|
|
|
|
return true if status.success?
|
|
|
|
raise VagrantSSHCommandError, status
|
2014-04-22 11:36:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
World(VagrantHelpers)
|