Sha256: d55b84aa54f6a8788283d628d67d88b12c70dd3d8b0aaddd83d324c0073e99f3

Contents?: true

Size: 653 Bytes

Versions: 8

Compression:

Stored size: 653 Bytes

Contents

module Kontena::Plugin::Vagrant::Nodes
  class StopCommand < Clamp::Command
    include Kontena::Cli::Common
    include Kontena::Cli::GridOptions

    parameter "NAME", "Node name"

    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
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
krates-plugin-vagrant-0.3.6 lib/kontena/plugin/vagrant/nodes/stop_command.rb
krates-plugin-vagrant-0.3.5 lib/kontena/plugin/vagrant/nodes/stop_command.rb
krates-plugin-vagrant-0.3.4 lib/kontena/plugin/vagrant/nodes/stop_command.rb
krates-plugin-vagrant-0.3.3 lib/kontena/plugin/vagrant/nodes/stop_command.rb
krates-plugin-vagrant-0.3.2 lib/kontena/plugin/vagrant/nodes/stop_command.rb
krates-plugin-vagrant-0.3.1 lib/kontena/plugin/vagrant/nodes/stop_command.rb
kontena-plugin-vagrant-0.3.1 lib/kontena/plugin/vagrant/nodes/stop_command.rb
kontena-plugin-vagrant-0.3.0 lib/kontena/plugin/vagrant/nodes/stop_command.rb