class Kontena::Plugin::Vagrant::Nodes::StopCommand

Public Instance Methods

execute() click to toggle source
# File lib/kontena/plugin/vagrant/nodes/stop_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 halt' for #{name.colorize(:cyan)}"
    exit $?.exitstatus unless system('vagrant halt')
  end
end