8
9
10
11
12
13
14
15
16
17
18
19
20
|
# File 'lib/kontena/plugin/vagrant/nodes/restart_command.rb', line 8
def execute
require_api_url
require_current_grid
require_relative '../../../machine/vagrant'
vagrant_path = "#{Dir.home}/.kontena/#{current_grid}/#{name}"
abort("Cannot find Vagrant node #{name}".colorize(:red)) unless Dir.exist?(vagrant_path)
Dir.chdir(vagrant_path) do
spinner "Triggering 'vagrant reload' for #{name.colorize(:cyan)}"
exit $?.exitstatus unless system('vagrant reload')
end
end
|